dotfiles/.config/nvim/lua/plugins/extras/lsp/lightbulb.lua
2023-10-31 00:01:03 +01:00

12 lines
262 B
Lua

return {
"kosayoda/nvim-lightbulb",
event = "LspAttach",
opts = {
autocmd = { enabled = true },
sign = { enabled = true, text = "" },
action_kinds = { "quickfix", "refactor" },
ignore = {
actions_without_kind = true,
},
},
}