kickstart.nvim/lua/custom/plugins/ruff-lsp.lua

13 lines
284 B
Lua
Raw Normal View History

2024-02-05 19:28:00 +07:00
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
}