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