]> git.donarmstrong.com Git - qmk_firmware.git/blob - users/zer09/config.h
Remove more commented out MCUs
[qmk_firmware.git] / users / zer09 / config.h
1 #ifndef USERSPACE_CONFIG_H
2 #define USERSPACE_CONFIG_H
3
4 #ifndef QMK_KEYS_PER_SCAN
5 #define QMK_KEYS_PER_SCAN 4
6 #endif // !QMK_KEYS_PER_SCAN
7
8 // this makes it possible to do rolling combos (zx) with keys that
9 // convert to other keys on hold (z becomes ctrl when you hold it,
10 // and when this option isn't enabled, z rapidly followed by x
11 // actually sends Ctrl-x. That's bad.)
12 #define IGNORE_MOD_TAP_INTERRUPT
13 #undef PERMISSIVE_HOLD
14 #define STRICT_LAYER_RELEASE
15
16 #define FORCE_NKRO
17
18 #ifndef TAPPING_TOGGLE
19 #define TAPPING_TOGGLE 1
20 #endif
21
22 #ifdef TAPPING_TERM
23 #undef TAPPING_TERM
24 #endif
25 #define TAPPING_TERM 95
26
27 // Disable action_get_macro and fn_actions, since we don't use these
28 // and it saves on space in the firmware.
29 #define NO_ACTION_MACRO
30 #define NO_ACTION_FUNCTION
31
32 #endif