043ef40b92
* Add INSERT and EEP_RST to HS60 keymap * Add INSERT to keymap * Layer based RGB colors * Move RGB code to layer_rgb.c * New file with layer based RGB colors * Use RGB code if RGBLIGHT is enabled * Set RGB options in config.h * Remove rgb enable from init user
14 lines
300 B
Makefile
14 lines
300 B
Makefile
TAP_DANCE_ENABLE = yes
|
|
EXTRAKEY_ENABLE = yes
|
|
BACKLIGHT_ENABLE = no
|
|
COMMAND_ENABLE = no
|
|
BOOTMAGIC_ENABLE = no
|
|
MOUSEKEY_ENABLE = no
|
|
AUDIO_ENABLE = no
|
|
CONSOLE_ENABLE = no
|
|
NKRO_ENABLE = no
|
|
|
|
ifeq ($(strip $(RGBLIGHT_ENABLE)), yes)
|
|
# Include my fancy rgb functions source here
|
|
SRC += layer_rgb.c
|
|
endif
|