mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf;
|
|
|
|
cfg = config.vim;
|
|
in {
|
|
config = {
|
|
vim.maps = {
|
|
normal =
|
|
mkIf cfg.disableArrows {
|
|
"<up>" = {
|
|
action = "<nop>";
|
|
|
|
noremap = false;
|
|
};
|
|
"<down>" = {
|
|
action = "<nop>";
|
|
|
|
noremap = false;
|
|
};
|
|
"<left>" = {
|
|
action = "<nop>";
|
|
noremap = false;
|
|
};
|
|
"<right>" = {
|
|
action = "<nop>";
|
|
noremap = false;
|
|
};
|
|
}
|
|
// mkIf cfg.mapLeaderSpace {
|
|
"<space>" = {
|
|
action = "<nop>";
|
|
};
|
|
};
|
|
|
|
insert = mkIf cfg.disableArrows {
|
|
"<up>" = {
|
|
action = "<nop>";
|
|
noremap = false;
|
|
};
|
|
"<down>" = {
|
|
action = "<nop>";
|
|
noremap = false;
|
|
};
|
|
"<left>" = {
|
|
action = "<nop>";
|
|
noremap = false;
|
|
};
|
|
"<right>" = {
|
|
action = "<nop>";
|
|
noremap = false;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|