Disable arrow keys and move to Vi keys.

This commit is contained in:
Jimbo 2024-10-24 19:44:44 -04:00
parent 8115900d7c
commit e763ff8c1d
2 changed files with 44 additions and 33 deletions

View file

@ -4,11 +4,23 @@
enable = true;
keyboards.default = {
ids = [ "*" ];
settings.main = {
capslock = "overload(control, esc)";
esc = "capslock";
control = "f14";
scrolllock = "esc";
settings = {
main = {
capslock = "overload(control,esc)";
esc = "capslock";
rightcontrol = "esc";
leftcontrol = "noop";
left = "noop";
down = "noop";
up = "noop";
right = "noop";
};
control = {
h = "left";
j = "down";
k = "up";
l = "right";
};
};
};
};