]> git.donarmstrong.com Git - qmk_firmware.git/blob - users/drashna/config.h
ef1860778eeb08ed16537a9b74f5ad2519e40975
[qmk_firmware.git] / users / drashna / config.h
1 #ifndef USERSPACE_CONFIG_H
2 #define USERSPACE_CONFIG_H
3
4
5 #ifdef AUDIO_ENABLE
6 #define AUDIO_CLICKY
7 #define STARTUP_SONG SONG(E1M1_DOOM)
8 #define GOODBYE_SONG  SONG(SONIC_RING)
9 #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \
10                                   SONG(COLEMAK_SOUND), \
11                                   SONG(DVORAK_SOUND), \
12                                   SONG(OVERWATCH_THEME) \
13                                 }
14 #endif
15
16 #ifdef RGBLIGHT_ENABLE
17   #ifndef KEYBOARD_ergodox_ez
18     #define RGBLIGHT_SLEEP
19   #endif // !KEYBOARD_ergodox_ez
20 #endif // RGBLIGHT_ENABLE
21
22
23
24 #ifndef ONESHOT_TAP_TOGGLE
25 #define ONESHOT_TAP_TOGGLE 2
26 #endif // !ONESHOT_TAP_TOGGLE
27
28 #ifndef ONESHOT_TIMEOUT
29 #define ONESHOT_TIMEOUT 3000
30 #endif// !ONESHOT_TIMEOUT
31
32 #ifndef QMK_KEYS_PER_SCAN
33 #define QMK_KEYS_PER_SCAN 4
34 #endif // !QMK_KEYS_PER_SCAN
35
36
37
38 // this makes it possible to do rolling combos (zx) with keys that
39 // convert to other keys on hold (z becomes ctrl when you hold it,
40 // and when this option isn't enabled, z rapidly followed by x
41 // actually sends Ctrl-x. That's bad.)
42 #define IGNORE_MOD_TAP_INTERRUPT
43 #undef PERMISSIVE_HOLD
44 #undef PREVENT_STUCK_MODIFIERS
45 #define TAPPING_FORCE_HOLD
46 //#define RETRO_TAPPING
47
48 #define FORCE_NKRO
49
50 #ifndef TAPPING_TOGGLE
51 #define TAPPING_TOGGLE  1
52 #endif
53
54 #ifdef TAPPING_TERM
55 #undef TAPPING_TERM
56 #endif // TAPPING_TERM
57 #define TAPPING_TERM 200
58
59
60 // Disable action_get_macro and fn_actions, since we don't use these
61 // and it saves on space in the firmware.
62 #ifndef NO_DEBUG
63 #define NO_DEBUG
64 #endif // !NO_DEBUG
65 #if !defined(NO_PRINT) && !defined(CONSOLE_ENABLE)
66 #define NO_PRINT
67 #endif // !NO_PRINT
68 #define NO_ACTION_MACRO
69 #define NO_ACTION_FUNCTION
70
71 #define DISABLE_LEADER
72
73 #endif // !USERSPACE_CONFIG_H
74