17 lines
332 B
Lua
17 lines
332 B
Lua
return {
|
|
'SmiteshP/nvim-navic',
|
|
dependencies = {
|
|
'neovim/nvim-lspconfig'
|
|
},
|
|
config = function ()
|
|
local navic = require('nvim-navic')
|
|
navic.setup({
|
|
lsp = {
|
|
auto_attach = true,
|
|
preference = { 'helm_ls', 'yamlls' }
|
|
}
|
|
})
|
|
end
|
|
}
|
|
|