]> git.donarmstrong.com Git - qmk_firmware.git/blob - users/drashna/config.h
Update to drashna userspace and keymaps (#3172)
[qmk_firmware.git] / users / drashna / config.h
1 #pragma once
2
3
4 #ifdef AUDIO_ENABLE
5 #define AUDIO_CLICKY
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
14 #define AUDIO_CLICKY_FREQ_RANDOMNESS 1.0f
15
16 #endif
17
18 #ifdef RGBLIGHT_ENABLE
19 #define RGBLIGHT_SLEEP
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 175
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 #define MACRO_TIMER 5
74
75