Add Karabiner-Elements and Zellij configs

Tossed karabiner inside of the macos directory. Starting to wonder if I
outta break that directory up, or if I outta double down and consolidate
around which system the files apply to.
This commit is contained in:
Josh Sherman 2024-11-14 18:27:33 -06:00
parent 0276c4820b
commit 7154e64e43
No known key found for this signature in database
GPG key ID: 55B058A80530EF22
3 changed files with 453 additions and 1 deletions

View file

@ -0,0 +1,42 @@
{
"global": { "show_in_menu_bar": false },
"profiles": [
{
"complex_modifications": {
"rules": [
{
"manipulators": [
{
"description": "Change right_command to command+control+option+shift.",
"from": {
"key_code": "right_command",
"modifiers": { "optional": ["any"] }
},
"to": [
{
"key_code": "left_shift",
"modifiers": ["left_command", "left_control", "left_option"]
}
],
"to_if_alone": [{ "key_code": "f20" }],
"type": "basic"
}
]
}
]
},
"name": "Default profile",
"selected": true,
"simple_modifications": [
{
"from": { "key_code": "caps_lock" },
"to": [{ "key_code": "left_control" }]
}
],
"virtual_hid_keyboard": {
"country_code": 0,
"keyboard_type_v2": "ansi"
}
}
]
}