Skip to content

Instantly share code, notes, and snippets.

@rbika
Created July 15, 2025 01:38
Show Gist options
  • Select an option

  • Save rbika/f4f7eb74d86b313e2bbc8b2033dcf708 to your computer and use it in GitHub Desktop.

Select an option

Save rbika/f4f7eb74d86b313e2bbc8b2033dcf708 to your computer and use it in GitHub Desktop.
Karabiner - Maps Left Ctrl + h/j/k/l to arrow keys
{
"description": "Maps Left Ctrl + h/j/k/l to arrow keys",
"manipulators": [
{
"from": {
"key_code": "h",
"modifiers": {
"mandatory": ["left_control"],
"optional": ["any"]
}
},
"to": [{ "key_code": "left_arrow" }],
"type": "basic"
},
{
"from": {
"key_code": "j",
"modifiers": {
"mandatory": ["left_control"],
"optional": ["any"]
}
},
"to": [{ "key_code": "down_arrow" }],
"type": "basic"
},
{
"from": {
"key_code": "k",
"modifiers": {
"mandatory": ["left_control"],
"optional": ["any"]
}
},
"to": [{ "key_code": "up_arrow" }],
"type": "basic"
},
{
"from": {
"key_code": "l",
"modifiers": {
"mandatory": ["left_control"],
"optional": ["any"]
}
},
"to": [{ "key_code": "right_arrow" }],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment