From 652843adb525cb2d1e456645bb35969a21143199 Mon Sep 17 00:00:00 2001 From: 409 Date: Tue, 28 May 2024 06:41:53 +0200 Subject: [PATCH] feat: added nvim-lightbulb --- lua/409/plugins/completion.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/lua/409/plugins/completion.lua b/lua/409/plugins/completion.lua index d640591..b2c10a6 100644 --- a/lua/409/plugins/completion.lua +++ b/lua/409/plugins/completion.lua @@ -88,4 +88,19 @@ return { "hrsh7th/cmp-path", "hrsh7th/cmp-cmdline", "L3MON4D3/LuaSnip", + { + "kosayoda/nvim-lightbulb", + opts = { + priority = 200, + autocmd = { + enabled = true, + }, + action_kinds = { + "quickfix", + }, + }, + config = function(plugin, opts) + require('nvim-lightbulb').setup(opts) + end, + }, }