neo2005/config/keymaps.nix
2024-12-10 07:38:15 +01:00

16 lines
243 B
Nix

{ ... }: {
keymaps = [
{
# Focus file tree
key = "<leader>v";
action = "<cmd>CHADopen --always-focus<cr>";
}
{
# Toggle file tree
key = "<leader>e";
action = "<cmd>CHADopen<cr>";
}
];
}