2024-02-05 19:28:00 +07:00

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
}