nix-config/programs/nixvim/plugins/neo-tree.nix

28 lines
454 B
Nix
Raw Normal View History

2025-10-03 20:20:39 -07:00
{ ... }:
{
programs.nixvim = {
keymaps = [
{
mode = "n";
key = "<leader>m";
action = ":Neotree action=focus reveal toggle<CR>";
options.silent = true;
}
];
plugins.neo-tree = {
enable = true;
2025-10-11 13:05:59 -07:00
settings = {
close_if_last_window = true;
window = {
width = 30;
autoExpandWidth = true;
position = "right";
};
2025-10-03 20:20:39 -07:00
};
};
};
}