]> git.donarmstrong.com Git - qmk_firmware.git/blob - users/drashna/config.h
Merge branch 'master' of github.com:qmk/qmk_firmware into hf/shinydox
[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
15 #define AUDIO_CLICKY_FREQ_RANDOMNESS 1.0f
16
17 #endif
18
19 #ifdef RGBLIGHT_ENABLE
20 #define RGBLIGHT_SLEEP
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 // #define TAPPING_FORCE_HOLD
47 //#define RETRO_TAPPING
48
49 #define FORCE_NKRO
50
51 #ifndef TAPPING_TOGGLE
52 #define TAPPING_TOGGLE  1
53 #endif
54
55 #ifdef TAPPING_TERM
56 #undef TAPPING_TERM
57 #endif // TAPPING_TERM
58 #define TAPPING_TERM 175
59
60
61 // Disable action_get_macro and fn_actions, since we don't use these
62 // and it saves on space in the firmware.
63 #ifndef NO_DEBUG
64 #define NO_DEBUG
65 #endif // !NO_DEBUG
66 #if !defined(NO_PRINT) && !defined(CONSOLE_ENABLE)
67 #define NO_PRINT
68 #endif // !NO_PRINT
69 #define NO_ACTION_MACRO
70 #define NO_ACTION_FUNCTION
71
72 #define DISABLE_LEADER
73
74 #endif // !USERSPACE_CONFIG_H
75