Add files
This commit is contained in:
parent
b115814916
commit
95a87d9a4d
19 changed files with 821 additions and 617 deletions
12
lua/custom/plugins/ruff-lsp.lua
Normal file
12
lua/custom/plugins/ruff-lsp.lua
Normal 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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue