nichts/modules/editors/nixvim/plug/utils/hardtime.nix
2024-05-22 15:32:37 +02:00

26 lines
553 B
Nix

{
programs.nixvim.plugins.hardtime = {
enable = true;
enabled = true;
disableMouse = true;
disabledFiletypes = ["Oil"];
hint = true;
maxCount = 2;
maxTime = 1000;
restrictionMode = "hint";
restrictedKeys = {
"h" = ["n" "x"];
"j" = ["n" "x"];
"k" = ["n" "x"];
"l" = ["n" "x"];
"-" = ["n" "x"];
"+" = ["n" "x"];
"gj" = ["n" "x"];
"gk" = ["n" "x"];
"<CR>" = ["n" "x"];
"<C-M>" = ["n" "x"];
"<C-N>" = ["n" "x"];
"<C-P>" = ["n" "x"];
};
};
}