feat: extras.editor.neo-tree
This commit is contained in:
parent
0b9f37df6c
commit
a12fc1d1c9
3 changed files with 22 additions and 0 deletions
|
@ -216,6 +216,9 @@
|
|||
# Navic
|
||||
nvim-navic
|
||||
|
||||
# Neo-tree
|
||||
neo-tree-nvim
|
||||
|
||||
# Custom
|
||||
rose-pine
|
||||
diffview-nvim
|
||||
|
|
1
init.lua
1
init.lua
|
@ -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' },
|
||||
|
||||
|
|
18
lua/plugins/neo-tree-nvim.lua
Normal file
18
lua/plugins/neo-tree-nvim.lua
Normal 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,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
Loading…
Reference in a new issue