Last active
October 29, 2021 16:24
-
-
Save imekachi/f1f46d973f44151b6524b074fae017f2 to your computer and use it in GitHub Desktop.
NuPhy Air75 fn + h j k l to arrow keys with Karabiner element complex modifications.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "VIM arrows", | |
"rules": [ | |
{ | |
"description": "fn + h j k l to arrow keys", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "h", | |
"modifiers": { | |
"mandatory": ["fn"], | |
"optional": ["control", "option", "command", "shift"] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "left_arrow" | |
} | |
] | |
}, | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "j", | |
"modifiers": { | |
"mandatory": ["fn"], | |
"optional": ["control", "option", "command", "shift"] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "down_arrow" | |
} | |
] | |
}, | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "k", | |
"modifiers": { | |
"mandatory": ["fn"], | |
"optional": ["control", "option", "command", "shift"] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "up_arrow" | |
} | |
] | |
}, | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "l", | |
"modifiers": { | |
"mandatory": ["fn"], | |
"optional": ["control", "option", "command", "shift"] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "right_arrow" | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
~/.config/karabiner/assets/complex_modification