neo2005/config/keymaps.nix

16 lines
243 B
Nix
Raw Normal View History

2024-12-10 07:38:15 +01:00
{ ... }: {
keymaps = [
{
# Focus file tree
key = "<leader>v";
action = "<cmd>CHADopen --always-focus<cr>";
}
{
# Toggle file tree
key = "<leader>e";
action = "<cmd>CHADopen<cr>";
}
];
}