nixvim-config/config/keymaps.nix
2025-05-19 09:37:24 +08:00

23 lines
337 B
Nix

{...}: {
globals.mapleader = " ";
keymaps = [
{
mode = ["n"];
key = "<ESC>";
action = ":noh<CR>";
options = {
silent = true;
};
}
{ # prefix: find
mode = ["n"];
key = "<leader>f";
action = "<NOP>";
options = {
desc = "+find";
};
}
];
}