add nvim-navic

This commit is contained in:
2024-09-26 10:43:39 +03:00
parent aac1e91dcb
commit 1a2df25f5e
4 changed files with 26 additions and 8 deletions

View File

@@ -0,0 +1,15 @@
return {
'SmiteshP/nvim-navic',
dependencies = {
'neovim/nvim-lspconfig'
},
config = function ()
local navic = require('nvim-navic')
navic.setup({
lsp = {
auto_attach = true
}
})
end
}