← Back

My Karabiner Config

This is my "hyper key" config, you can download Karabiner Elements here.

Keybindings:

  • Caps Lock to Hyper
  • Hyper + Tab to Control + Tab
  • Hyper + A to Cmd + A
  • Hyper + J/K to PageUp/PageDown
  • Hyper + H/L to Left/Right Arrow
  • Hyper + C to Cmd + C
  • Hyper + V to Cmd + V
  • Hyper + T to Cmd + T
  • Hyper + W to Cmd + W

Hover or focus a key

Hover or focus a key to see the keybinding

EscF1F2F3F4F5F6F7F8F9F10F11F12Del`1234567890-=BackspaceTabQWERTYUIOP[]\CapsASDFGHJKL;'EnterShiftZXCVBNM,./ShiftFnCtrlOptCmdCmdOpt

Full Karabiner Configuration

{
  "description": "Custom Config",
  "manipulators": [
    {
      "from": {
        "key_code": "caps_lock",
        "modifiers": {
          "optional": [
            "any"
          ]
        }
      },
      "parameters": {
        "basic.to_delayed_action_delay_milliseconds": 0,
        "basic.to_if_alone_timeout_milliseconds": 100
      },
      "to": [
        {
          "key_code": "left_shift",
          "modifiers": [
            "left_command",
            "left_control",
            "left_option"
          ]
        }
      ],
      "to_if_alone": [
        {
          "key_code": "escape"
        }
      ],
      "type": "basic"
    },
    {
      "from": {
        "key_code": "tab",
        "modifiers": {
          "mandatory": [
            "left_shift",
            "left_command",
            "left_control",
            "left_option"
          ],
          "optional": [
            "any"
          ]
        }
      },
      "to": [
        {
          "key_code": "tab",
          "modifiers": [
            "left_control"
          ]
        }
      ],
      "type": "basic"
    },
    {
      "from": {
        "key_code": "k",
        "modifiers": {
          "mandatory": [
            "left_shift",
            "left_command",
            "left_control",
            "left_option"
          ],
          "optional": [
            "any"
          ]
        }
      },
      "to": [
        {
          "key_code": "page_up"
        }
      ],
      "type": "basic"
    },
    {
      "from": {
        "key_code": "j",
        "modifiers": {
          "mandatory": [
            "left_shift",
            "left_command",
            "left_control",
            "left_option"
          ],
          "optional": [
            "any"
          ]
        }
      },
      "to": [
        {
          "key_code": "page_down"
        }
      ],
      "type": "basic"
    },
    {
      "from": {
        "key_code": "h",
        "modifiers": {
          "mandatory": [
            "left_shift",
            "left_command",
            "left_control",
            "left_option"
          ],
          "optional": [
            "any"
          ]
        }
      },
      "to": [
        {
          "key_code": "left_arrow"
        }
      ],
      "type": "basic"
    },
    {
      "from": {
        "key_code": "l",
        "modifiers": {
          "mandatory": [
            "left_shift",
            "left_command",
            "left_control",
            "left_option"
          ],
          "optional": [
            "any"
          ]
        }
      },
      "to": [
        {
          "key_code": "right_arrow"
        }
      ],
      "type": "basic"
    },
    {
      "from": {
        "key_code": "a",
        "modifiers": {
          "mandatory": [
            "left_shift",
            "left_command",
            "left_control",
            "left_option"
          ],
          "optional": [
            "any"
          ]
        }
      },
      "to": [
        {
          "key_code": "a",
          "modifiers": [
            "left_command"
          ]
        }
      ],
      "type": "basic"
    },
    {
      "from": {
        "key_code": "t",
        "modifiers": {
          "mandatory": [
            "left_shift",
            "left_command",
            "left_control",
            "left_option"
          ],
          "optional": [
            "any"
          ]
        }
      },
      "to": [
        {
          "key_code": "t",
          "modifiers": [
            "left_command"
          ]
        }
      ],
      "type": "basic"
    },
    {
      "from": {
        "key_code": "c",
        "modifiers": {
          "mandatory": [
            "left_shift",
            "left_command",
            "left_control",
            "left_option"
          ],
          "optional": [
            "any"
          ]
        }
      },
      "to": [
        {
          "key_code": "c",
          "modifiers": [
            "left_command"
          ]
        }
      ],
      "type": "basic"
    },
    {
      "from": {
        "key_code": "v",
        "modifiers": {
          "mandatory": [
            "left_shift",
            "left_command",
            "left_control",
            "left_option"
          ],
          "optional": [
            "any"
          ]
        }
      },
      "to": [
        {
          "key_code": "v",
          "modifiers": [
            "left_command"
          ]
        }
      ],
      "type": "basic"
    },
    {
      "from": {
        "key_code": "w",
        "modifiers": {
          "mandatory": [
            "left_shift",
            "left_command",
            "left_control",
            "left_option"
          ],
          "optional": [
            "any"
          ]
        }
      },
      "to": [
        {
          "key_code": "w",
          "modifiers": [
            "left_command"
          ]
        }
      ],
      "type": "basic"
    }
  ]
}