nv/config/keymaps.nix

18 lines
237 B
Nix
Raw Normal View History

2024-03-01 10:30:08 +00:00
{
globals.mapleader = " ";
keymaps = [
# General maps
{
mode = "n";
key = "<leader>f";
action = "+find/file";
}
{
mode = "n";
key = "<leader>s";
action = "+search";
}
];
}