nixvim-config/config/keymaps.nix

15 lines
188 B
Nix

{...}: {
globals.mapleader = " ";
keymaps = [
{
mode = ["n"];
key = "<ESC>";
action = ":noh<CR>";
options = {
silent = true;
};
}
];
}