move from nerdtree to nvim tree

This commit is contained in:
sloane 2025-03-12 09:59:47 -04:00
parent cd77eb02fa
commit b2bd8895cb
Signed by: sloanelybutsurely
SSH key fingerprint: SHA256:8SBnwhl+RY3oEyQxy1a9wByPzxWM0x+/Ejc+sIlY5qQ

View file

@ -87,12 +87,12 @@
}
{
key = "<leader><tab>";
action = "<cmd>NERDTreeToggle<cr>";
action = "<cmd>NvimTreeToggle<cr>";
mode = [ "n" ];
}
{
key = "<leader>fl";
action = "<cmd>NERDTreeFind<cr>";
action = "<cmd>NvimTreeFindFile<cr>";
mode = [ "n" ];
}
{
@ -138,7 +138,6 @@
extraPlugins = with pkgs.vimPlugins; [
vim-abolish
nerdtree
vim-rhubarb
vim-dispatch
vim-dispatch-neovim
@ -254,5 +253,11 @@
plugins.which-key = {
enable = true;
};
plugins.nvim-tree = {
enable = true;
disableNetrw = true;
openOnSetup = true;
};
};
}