Modularize complex plugin configs. Add folding plugin

This commit is contained in:
juanmagalhaes 2023-08-15 01:18:37 -03:00
parent 1b94c10240
commit aa1b35c68b
4 changed files with 129 additions and 34 deletions

19
lua/plugins/neo-tree.lua Normal file
View file

@ -0,0 +1,19 @@
return {
"nvim-neo-tree/neo-tree.nvim",
branch = "v3.x",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
"MunifTanjim/nui.nvim",
},
config = function()
require('neo-tree').setup {
filesystem = {
filtered_items = {
visible = true,
hide_hidden = false
}
},
}
end,
}