feat: added nvim-lightbulb

This commit is contained in:
2024-05-28 06:41:53 +02:00
parent f7f6b22b77
commit 652843adb5

View File

@@ -88,4 +88,19 @@ return {
"hrsh7th/cmp-path", "hrsh7th/cmp-path",
"hrsh7th/cmp-cmdline", "hrsh7th/cmp-cmdline",
"L3MON4D3/LuaSnip", "L3MON4D3/LuaSnip",
{
"kosayoda/nvim-lightbulb",
opts = {
priority = 200,
autocmd = {
enabled = true,
},
action_kinds = {
"quickfix",
},
},
config = function(plugin, opts)
require('nvim-lightbulb').setup(opts)
end,
},
} }