From 30de411af5a6640a050b01d7468ce718eeed6dc7 Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 27 Nov 2022 11:50:35 -0500 Subject: [PATCH] add karabiner config --- .../complex_modifications/ajet_config.json | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .config/karabiner/assets/complex_modifications/ajet_config.json diff --git a/.config/karabiner/assets/complex_modifications/ajet_config.json b/.config/karabiner/assets/complex_modifications/ajet_config.json new file mode 100644 index 0000000..becbf9b --- /dev/null +++ b/.config/karabiner/assets/complex_modifications/ajet_config.json @@ -0,0 +1,31 @@ +{ + "title": "Ajet's Config", + "rules": [ + { + "description": "forward delete", + "manipulators": [ + { + "type": "basic", + "from": { + "simultaneous": [ + { + "key_code": "equal_sign" + }, + { + "key_code": "delete_or_backspace" + } + ], + "modifiers": { + "optional": ["any"] + } + }, + "to": [ + { + "key_code": "delete_forward" + } + ] + } + ] + } + ] +}