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