dotfiles/home/modules/tui/neovim/plugins/neo-tree.nix
2024-12-04 21:11:13 -06:00

22 lines
No EOL
372 B
Nix

{
programs.nixvim = {
keymaps = [
{
mode = "n";
key = "<leader>n";
action = ":Neotree action=focus reveal toggle<CR>";
options.silent = true;
}
];
plugins.neo-tree = {
enable = true;
closeIfLastWindow = true;
window = {
width = 30;
autoExpandWidth = true;
};
};
};
}