4c6ce12d2a
* Fixed Left Shift tapdance in general and for gaming mode. (#12) * update ISO readme * left shift fixed in general, including for gaming mode * fixed toggle menu rendering on ISO layouts * updated readme's and cosmetics * update readme's * update readme's again * readme cosmetics * consolidate readme's * more readme cosmetics * clarification for bootloader mode on ISO * Autocorrect added with 400 word English dictionary (#13) * autocorrect added with 400 word dictionary * update readme's for autocorrect * Add FN-B as shortcut to bootloader * Update .gitignore Co-authored-by: Joel Challis <git@zvecr.com> * RGB changes to system numlock and ISO extended alphas - hide system numlock off indicator (primarily for Mac users) by moving it to numpad and FN layers instead - give users with extended alpha ISO languages a config option to add RGB highlights for extras alphas on capslock * readme updates * Fixed [FN]B and [FN]N shortcuts not working on numpad layer Co-authored-by: Joel Challis <git@zvecr.com>
18 lines
663 B
Makefile
18 lines
663 B
Makefile
LTO_ENABLE = yes # link time optimization -- achieves a smaller compiled size
|
|
CONSOLE_ENABLE = no
|
|
COMMAND_ENABLE = no
|
|
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
|
VIA_ENABLE = yes
|
|
|
|
MOUSEKEY_ENABLE = yes
|
|
TAP_DANCE_ENABLE = no
|
|
CAPS_WORD_ENABLE = yes # Enable built-in Caps Word functionality
|
|
IDLE_TIMEOUT_ENABLE = yes
|
|
STARTUP_NUMLOCK_ON = yes
|
|
ENCODER_DEFAULTACTIONS_ENABLE = no
|
|
COLEMAK_LAYER_ENABLE = yes # Enable Colemak layer / set to no to disable
|
|
INVERT_NUMLOCK_INDICATOR = yes
|
|
GAME_ENABLE ?= yes # Enable Paddle Game / set to no to disable
|
|
ifeq ($(strip $(GAME_ENABLE)), yes)
|
|
OPT_DEFS += -DGAME_ENABLE
|
|
endif
|