feat(nvimtree): use nvimtree instead of neotree

This commit is contained in:
Artur Manuel 2025-02-16 16:44:59 +00:00
commit d91ff7b61a
Signed by: amadaluzia
SSH key fingerprint: SHA256:Zwg7gBuZyaG48ucAZneJwltiXu0+tJb7c3lYt9AYlLg

19
nvf.nix
View file

@ -121,9 +121,26 @@ in {
highlight.enable = true; highlight.enable = true;
incrementalSelection.enable = true; incrementalSelection.enable = true;
}; };
filetree.nvimTree = {
enable = true;
openOnSetup = true;
setupOpts = {
disable_netrw = true;
filters = {
git_ignored = true;
};
git = {
enable = true;
};
view = {
relativenumber = true;
side = "right";
float.enable = true;
};
};
};
dashboard.alpha.enable = true; dashboard.alpha.enable = true;
binds.whichKey.enable = true; binds.whichKey.enable = true;
filetree.neo-tree.enable = true;
notify.nvim-notify.enable = true; notify.nvim-notify.enable = true;
comments.comment-nvim.enable = true; comments.comment-nvim.enable = true;
autocomplete.nvim-cmp.enable = true; autocomplete.nvim-cmp.enable = true;