move from nerdtree to nvim tree
This commit is contained in:
parent
cd77eb02fa
commit
b2bd8895cb
1 changed files with 8 additions and 3 deletions
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue