add nvim-navic
This commit is contained in:
@@ -24,6 +24,7 @@
|
|||||||
"nvim-cmp": { "branch": "main", "commit": "ae644feb7b67bf1ce4260c231d1d4300b19c6f30" },
|
"nvim-cmp": { "branch": "main", "commit": "ae644feb7b67bf1ce4260c231d1d4300b19c6f30" },
|
||||||
"nvim-colorizer.lua": { "branch": "master", "commit": "a065833f35a3a7cc3ef137ac88b5381da2ba302e" },
|
"nvim-colorizer.lua": { "branch": "master", "commit": "a065833f35a3a7cc3ef137ac88b5381da2ba302e" },
|
||||||
"nvim-lspconfig": { "branch": "master", "commit": "bdbc65aadc708ce528efb22bca5f82a7cca6b54d" },
|
"nvim-lspconfig": { "branch": "master", "commit": "bdbc65aadc708ce528efb22bca5f82a7cca6b54d" },
|
||||||
|
"nvim-navic": { "branch": "master", "commit": "8649f694d3e76ee10c19255dece6411c29206a54" },
|
||||||
"nvim-sops": { "branch": "main", "commit": "cb2209562d00ef8c6c88bdec836d9edb8fbb96ef" },
|
"nvim-sops": { "branch": "main", "commit": "cb2209562d00ef8c6c88bdec836d9edb8fbb96ef" },
|
||||||
"nvim-surround": { "branch": "main", "commit": "ec2dc7671067e0086cdf29c2f5df2dd909d5f71f" },
|
"nvim-surround": { "branch": "main", "commit": "ec2dc7671067e0086cdf29c2f5df2dd909d5f71f" },
|
||||||
"nvim-treesitter": { "branch": "master", "commit": "00f128dd73086aa578dc3d9142de06c633b7c685" },
|
"nvim-treesitter": { "branch": "master", "commit": "00f128dd73086aa578dc3d9142de06c633b7c685" },
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
vim.filetype.add({
|
vim.filetype.add({
|
||||||
|
extension = {
|
||||||
|
["tf"] = "terraform",
|
||||||
|
},
|
||||||
pattern = {
|
pattern = {
|
||||||
[".*/playbooks/.*%.ya?ml"] = "yaml.ansible",
|
[".*/playbooks/.*%.ya?ml"] = "yaml.ansible",
|
||||||
[".*/roles/.*%.ya?ml"] = "yaml.ansible",
|
[".*/roles/.*%.ya?ml"] = "yaml.ansible",
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
return {
|
return {
|
||||||
'nvim-lualine/lualine.nvim',
|
'nvim-lualine/lualine.nvim',
|
||||||
dependencies = { 'nvim-tree/nvim-web-devicons', branch = 'master' },
|
dependencies = {
|
||||||
|
{ 'nvim-tree/nvim-web-devicons', branch = 'master', },
|
||||||
|
'SmiteshP/nvim-navic',
|
||||||
|
},
|
||||||
config = function()
|
config = function()
|
||||||
local colors = {
|
local colors = {
|
||||||
black = '#282828',
|
black = '#282828',
|
||||||
@@ -55,13 +58,9 @@ return {
|
|||||||
'filename',
|
'filename',
|
||||||
path = 4,
|
path = 4,
|
||||||
},
|
},
|
||||||
function()
|
{
|
||||||
return require("nvim-treesitter").statusline({
|
'navic',
|
||||||
indicator_size = 70,
|
},
|
||||||
type_patterns = { "class", "function", "method" },
|
|
||||||
separator = " -> ",
|
|
||||||
})
|
|
||||||
end,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
15
lua/crentist/lazy/navic.lua
Normal file
15
lua/crentist/lazy/navic.lua
Normal 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
|
||||||
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user