add neo-tree plugin
This commit is contained in:
parent
3a5de5a1e3
commit
3836cc96b9
2 changed files with 20 additions and 0 deletions
|
@ -18,6 +18,7 @@
|
|||
./plugins/lazygit.nix
|
||||
./plugins/lsp.nix
|
||||
./plugins/lualine.nix
|
||||
./plugins/neo-tree.nix
|
||||
./plugins/profile.nix
|
||||
./plugins/rooter.nix
|
||||
./plugins/snacks.nix
|
||||
|
|
19
nixos/nvim/plugins/neo-tree.nix
Normal file
19
nixos/nvim/plugins/neo-tree.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
programs.nixvim = {
|
||||
plugins.neo-tree = {
|
||||
enable = true;
|
||||
enableGitStatus = true;
|
||||
};
|
||||
keymaps = [
|
||||
{
|
||||
mode = "n";
|
||||
key = "<leader>e";
|
||||
action = "<CMD>Neotree toggle<CR>";
|
||||
options = {
|
||||
desc = "Toggle Neotree";
|
||||
silent = true;
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue