add neo-tree plugin

This commit is contained in:
cswimr 2025-02-10 23:05:22 -06:00
parent 3a5de5a1e3
commit 3836cc96b9
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087
2 changed files with 20 additions and 0 deletions

View file

@ -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

View 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;
};
}
];
};
}