Compare commits
3 commits
9cb67210b1
...
b2bd8895cb
Author | SHA1 | Date | |
---|---|---|---|
b2bd8895cb | |||
cd77eb02fa | |||
45cc4afd9b |
1 changed files with 17 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
|
||||
|
@ -245,5 +244,20 @@
|
|||
};
|
||||
|
||||
plugins.zellij-nav.enable = true;
|
||||
|
||||
plugins.neotest = {
|
||||
enable = true;
|
||||
adapters.elixir.enable = true;
|
||||
};
|
||||
|
||||
plugins.which-key = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
plugins.nvim-tree = {
|
||||
enable = true;
|
||||
disableNetrw = true;
|
||||
openOnSetup = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue