1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

Add plugin nvim-lightbulb to hint code actions

This commit is contained in:
jdhao 2024-11-05 21:46:43 +01:00
parent 5426c88a90
commit 4171f190f2

View File

@ -573,6 +573,14 @@ local plugin_specs = {
end,
event = "VeryLazy",
},
{
-- show hint for code actions, the user can also implement code actions themselves,
-- see discussion here: https://github.com/neovim/neovim/issues/14869
"kosayoda/nvim-lightbulb",
config = function()
require("nvim-lightbulb").setup { autocmd = { enabled = true } }
end,
},
}
require("lazy").setup {