add illuminate

This commit is contained in:
Alexander Navarro 2023-05-17 21:16:22 -04:00
parent 5d0272790f
commit 84c233094f
2 changed files with 22 additions and 14 deletions

View file

@ -18,10 +18,10 @@ return {
-- Useful status updates for LSP
-- NOTE: `opts = {}` is the same as calling `require('fidget').setup({})`
{ "j-hui/fidget.nvim", opts = {} },
{ "j-hui/fidget.nvim", opts = {} },
-- Additional lua configuration, makes nvim stuff amazing!
{ "folke/neodev.nvim", opts = {} },
{ "folke/neodev.nvim", opts = {} },
},
},
@ -56,4 +56,12 @@ return {
},
},
},
{
"RRethy/vim-illuminate",
event = { "BufReadPost", "BufNewFile" },
opts = { delay = 200 },
config = function(_, opts)
require("illuminate").configure(opts)
end,
},
}