Skip to content

Instantly share code, notes, and snippets.

@moriiimo
Last active January 12, 2019 15:31
Show Gist options
  • Save moriiimo/2c38a32690984032606a7cf065f5b03b to your computer and use it in GitHub Desktop.
Save moriiimo/2c38a32690984032606a7cf065f5b03b to your computer and use it in GitHub Desktop.
Karabiner
{
"title": "my setting",
"rules": [
{
"description": "send esc and eisuu if capslock typed",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_control",
"lazy": true
}
],
"to_if_alone": [
{
"key_code": "japanese_eisuu"
},
{
"key_code": "escape"
}
],
"type": "basic"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment