feat: extras.editor.neo-tree

This commit is contained in:
punkfairie 2025-03-08 14:23:47 -08:00
parent 0b9f37df6c
commit a12fc1d1c9
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
3 changed files with 22 additions and 0 deletions

View file

@ -216,6 +216,9 @@
# Navic
nvim-navic
# Neo-tree
neo-tree-nvim
# Custom
rose-pine
diffview-nvim

View file

@ -53,6 +53,7 @@ require('nixCatsUtils.lazyCat').setup(nixCats.pawsible { 'allPlugins', 'start',
{ import = 'lazyvim.plugins.extras.editor.aerial' },
{ import = 'lazyvim.plugins.extras.editor.navic' },
{ import = 'lazyvim.plugins.extras.editor.neo-tree' },
{ import = 'lazyvim.plugins.extras.lang.nix' },

View file

@ -0,0 +1,18 @@
return {
{
'nvim-neo-tree/neo-tree.nvim',
opts = {
close_if_last_window = true,
window = {
width = 30,
},
filesystem = {
filtered_items = {
hide_dotfiles = false,
hide_gitignored = false,
hide_hidden = false,
},
},
},
},
}