13 lines
284 B
Lua
13 lines
284 B
Lua
|
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
|
||
|
}
|