Files
nix-config/home/nixvim/keymaps.nix
2026-03-11 18:45:27 +01:00

26 lines
365 B
Nix

{ ... }: {
globals.mapleader = " ";
keymaps = [
{
key = "<esc>";
action = ":noh<CR>";
mode = "n";
options = {
silent = true;
desc = "Clear search highlight";
};
}
{
key = "j";
action = "gj";
mode = "n";
}
{
key = "k";
action = "gk";
mode = "n";
}
];
}