save a bit space
This commit is contained in:
parent
38fd24f414
commit
e2eb9283dd
13
config.h
13
config.h
|
@ -16,12 +16,25 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
// not more than 8 layers
|
||||||
|
#define LAYER_STATE_8BIT
|
||||||
|
|
||||||
// ensure home row modifiers don't cause havoc
|
// ensure home row modifiers don't cause havoc
|
||||||
#define IGNORE_MOD_TAP_INTERRUPT
|
#define IGNORE_MOD_TAP_INTERRUPT
|
||||||
|
|
||||||
// normal startup sound
|
// normal startup sound
|
||||||
#define STARTUP_SONG SONG(PLANCK_SOUND)
|
#define STARTUP_SONG SONG(PLANCK_SOUND)
|
||||||
|
|
||||||
|
// no music mode used
|
||||||
|
#define NO_MUSIC_MODE
|
||||||
|
|
||||||
|
// we don't need locking
|
||||||
|
#undef LOCKING_SUPPORT_ENABLE
|
||||||
|
#undef LOCKING_RESYNC_ENABLE
|
||||||
|
|
||||||
|
// we don't use one shot keys
|
||||||
|
#define NO_ACTION_ONESHOT
|
||||||
|
|
||||||
// no lights if we sleep
|
// no lights if we sleep
|
||||||
#define RGBLIGHT_SLEEP
|
#define RGBLIGHT_SLEEP
|
||||||
|
|
||||||
|
|
11
rules.mk
11
rules.mk
|
@ -1,3 +1,14 @@
|
||||||
|
# properly optimize
|
||||||
|
LTO_ENABLE = yes
|
||||||
|
|
||||||
# less debugging features
|
# less debugging features
|
||||||
COMMAND_ENABLE = no
|
COMMAND_ENABLE = no
|
||||||
CONSOLE_ENABLE = no
|
CONSOLE_ENABLE = no
|
||||||
|
|
||||||
|
# we have some real mouse
|
||||||
|
MOUSEKEY_ENABLE = no
|
||||||
|
|
||||||
|
# more features we not use
|
||||||
|
SPACE_CADET_ENABLE = no
|
||||||
|
GRAVE_ESC_ENABLE = no
|
||||||
|
MUSIC_ENABLE = no
|
||||||
|
|
Loading…
Reference in a new issue