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