95309e9af5
* Rename layers_keymap to layer_names * Update Escape and Left Control keys - change KC_GESC to KC_ESC - change KC_LCTL to MT(MOD_LCTL, KC_GRV) * Disable features I don't use Makes the firmware lean. Why? Because I can. :D * Update the readme files * Add KC_F13 through KC_F24 emulation ... and update the readme files accordingly. * Update rules/config - Swap EXTRAFLAGS for LINK_TIME_OPTIMIZATION_ENABLE - remove NO_ACTION_MACRO and NO_ACTION_FUNCTION - Re-enable COMMAND * concatenate full-length and short layer names * enable dynamic macros * update readme files
17 lines
393 B
C
17 lines
393 B
C
#pragma once
|
|
|
|
#define PERMISSIVE_HOLD // https://docs.qmk.fm/#/feature_advanced_keycodes?id=permissive-hold
|
|
|
|
// Enable single-color backlighting
|
|
#define BACKLIGHT_BREATHING
|
|
#define BACKLIGHT_LEVELS 5
|
|
#define BREATHING_PERIOD 4
|
|
|
|
#ifdef LOCKING_SUPPORT_ENABLE
|
|
# undef LOCKING_SUPPORT_ENABLE
|
|
#endif
|
|
#ifdef LOCKING_RESYNC_ENABLE
|
|
# undef LOCKING_RESYNC_ENABLE
|
|
#endif
|
|
|
|
#define NO_ACTION_ONESHOT
|