Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yhirose/1c1743fc892cefdda348998721b31fcf to your computer and use it in GitHub Desktop.
Save yhirose/1c1743fc892cefdda348998721b31fcf to your computer and use it in GitHub Desktop.
My Karabiner-Elements Complex-Modifications
{
"title": "For yhirose's HHKB",
"rules": [
{
"description": "Change Shift+Esc to ~",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "escape",
"modifiers": {
"mandatory": [
"shift"
]
}
},
"to": [
{
"key_code": "grave_accent_and_tilde",
"modifiers": [
"shift"
]
}
]
}
]
},
{
"description": "Change Shift+Delete to |",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "delete_or_backspace",
"modifiers": {
"mandatory": [
"shift"
]
}
},
"to": [
{
"key_code": "backslash",
"modifiers": [
"shift"
]
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment