Skip to content

Instantly share code, notes, and snippets.

@margauxflores
Last active February 22, 2024 15:45
Show Gist options
  • Save margauxflores/6388d097b49588f629052bdafad84514 to your computer and use it in GitHub Desktop.
Save margauxflores/6388d097b49588f629052bdafad84514 to your computer and use it in GitHub Desktop.
Karabiner Elements - Escape Key to Back Tick and Tilde and Escape + Ctrl to Escape
{
"description": "Escape Key",
"manipulators": [
{
"from": {
"key_code": "escape",
"modifiers": {
"mandatory": [
"left_control"
]
}
},
"to": [
{
"key_code": "escape"
}
],
"type": "basic"
},
{
"type": "basic",
"from": {
"key_code": "escape",
"modifiers": {
"optional": [
"left_shift"
]
}
},
"to": {
"key_code": "grave_accent_and_tilde"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment