Add nvim plugins for showing context and indent lines

This commit is contained in:
don philipe
2025-06-05 00:50:19 +02:00
parent ff7deb9cee
commit 4260c7876c
5 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
require'indentmini'.setup()
vim.cmd.highlight('IndentLine guifg=#444444')
vim.cmd.highlight('IndentLineCurrent guifg=#557755')

View File

@@ -0,0 +1,3 @@
require'treesitter-context'.setup{
enable = true,
}

View File

@@ -0,0 +1,3 @@
return {
"nvimdev/indentmini.nvim",
}

View File

@@ -0,0 +1,4 @@
return {
{'nvim-treesitter/nvim-treesitter-context',
},
}