dotfiles/home/modules/tui/neovim/plugins/neo-tree.nix

22 lines
372 B
Nix
Raw Normal View History

2024-12-05 03:11:13 +00:00
{
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;
};
};
};
}