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