Add files

This commit is contained in:
anhkhoakz 2024-02-05 19:28:00 +07:00
parent b115814916
commit 95a87d9a4d
No known key found for this signature in database
19 changed files with 821 additions and 617 deletions

View file

@ -0,0 +1,12 @@
return {
"astral-sh/ruff-lsp",
config = function()
local on_attach = function(client, bufnr)
client.server_capabilities.hoverProvider = false
end
require("lspconfig").ruff_lsp.setup {
on_attach = on_attach,
}
end
}