Basically reverting back to an old keymap

- removed most combos and all key overrides
- implemented custom override for haptic and audio config
- went back to older keymap (e.g. backspace and del on most layers)
- reintroduced dedicated mouse button on thumb cluster
- mouse button 2 is now a combo
This commit is contained in:
Victor 2024-07-02 00:35:32 -05:00
parent db534a12b8
commit bd72a9b350
No known key found for this signature in database
GPG key ID: 645A98F35E754E79
14 changed files with 141 additions and 201 deletions

View file

@ -33,9 +33,8 @@ WPM_ENABLE ?= yes
# qmk features we will force as these are critical for my workflow
EXTRAKEY_ENABLE ?= yes
CAPS_WORD_ENABLE ?= yes
MOUSEKEY_ENABLE ?= yes
MOUSEKEY_ENABLE = yes
COMBO_ENABLE ?= yes
KEY_OVERRIDE_ENABLE ?= yes
# ---------------------------------------------------------
@ -52,10 +51,6 @@ ifeq ($(strip $(COMBO_ENABLE)), yes)
INTROSPECTION_KEYMAP_C += features/combo.c
endif
ifeq ($(strip $(KEY_OVERRIDE_ENABLE)), yes)
SRC += features/keyoverride.c
endif
ifeq ($(strip $(CAPS_WORD_ENABLE)), yes)
SRC += features/capsword.c
endif