add code outline navigator to nvim

This commit is contained in:
Alexander Navarro 2024-11-21 12:30:12 -03:00
parent 9d3fa8e910
commit 82a3427e1b
10 changed files with 67 additions and 21 deletions

View file

@ -6,7 +6,15 @@ return {
-- Highlight word under cursor
"RRethy/vim-illuminate",
event = { "BufReadPost", "BufNewFile" },
opts = { delay = 200 },
opts = {
delay = 200,
filetypes_denylist = {
'dirbuf',
'dirvish',
'fugitive',
'aerial',
},
},
config = function(_, opts)
require("illuminate").configure(opts)
end,