add code outline navigator to nvim
This commit is contained in:
parent
9d3fa8e910
commit
82a3427e1b
10 changed files with 67 additions and 21 deletions
|
|
@ -6,6 +6,7 @@ return { -- Change colors.none if not using a transparent background
|
|||
flavour = "macchiato",
|
||||
transparent_background = true,
|
||||
integrations = {
|
||||
aerial = true,
|
||||
cmp = true,
|
||||
notify = true,
|
||||
harpoon = false,
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -115,6 +115,7 @@ return {
|
|||
},
|
||||
},
|
||||
{ codecompanion_status },
|
||||
{ "aerial" },
|
||||
{
|
||||
"overseer",
|
||||
},
|
||||
|
|
|
|||
|
|
@ -50,6 +50,7 @@ return {
|
|||
|
||||
-- Enable telescope fzf native, if installed
|
||||
pcall(telescope.load_extension, "fzf")
|
||||
pcall(telescope.load_extension, "aerial")
|
||||
|
||||
-- Find files
|
||||
vim.keymap.set(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue