Skip to content

Instantly share code, notes, and snippets.

@prkstaff
Last active March 9, 2026 14:30
Show Gist options
  • Select an option

  • Save prkstaff/fb31847922acfbed29dcfc523c2e8fdd to your computer and use it in GitHub Desktop.

Select an option

Save prkstaff/fb31847922acfbed29dcfc523c2e8fdd to your computer and use it in GitHub Desktop.
Karabiner capslock/ctrl/escape/ vim + hjkl arrows touchtyping improvement
{
"description": "CapsLock ctrl layer + hjkl arrows",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "caps_lock",
"modifiers": { "optional": ["any"] }
},
"to": [{ "key_code": "left_control" }],
"to_if_alone": [{ "key_code": "escape" }]
},
{
"type": "basic",
"from": {
"key_code": "h",
"modifiers": { "mandatory": ["control"], "optional": ["any"] }
},
"to": [{ "key_code": "left_arrow" }]
},
{
"type": "basic",
"from": {
"key_code": "j",
"modifiers": { "mandatory": ["control"], "optional": ["any"] }
},
"to": [{ "key_code": "down_arrow" }]
},
{
"type": "basic",
"from": {
"key_code": "k",
"modifiers": { "mandatory": ["control"], "optional": ["any"] }
},
"to": [{ "key_code": "up_arrow" }]
},
{
"type": "basic",
"from": {
"key_code": "l",
"modifiers": { "mandatory": ["control"], "optional": ["any"] }
},
"to": [{ "key_code": "right_arrow" }]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment