]> git.donarmstrong.com Git - qmk_firmware.git/blob - users/drashna/config.h
Yet another update to drashna keymaps and userspace (#3787)
[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.5f
15 // #ifdef RGBLIGHT_ENABLE
16 // #define NO_MUSIC_MODE
17 // #endif //RGBLIGHT_ENABLE
18 #endif
19
20 #ifdef RGBLIGHT_ENABLE
21 #define RGBLIGHT_SLEEP
22 #endif // RGBLIGHT_ENABLE
23
24
25
26 #ifndef ONESHOT_TAP_TOGGLE
27 #define ONESHOT_TAP_TOGGLE 2
28 #endif // !ONESHOT_TAP_TOGGLE
29
30 #ifndef ONESHOT_TIMEOUT
31 #define ONESHOT_TIMEOUT 3000
32 #endif// !ONESHOT_TIMEOUT
33
34 #ifndef QMK_KEYS_PER_SCAN
35 #define QMK_KEYS_PER_SCAN 4
36 #endif // !QMK_KEYS_PER_SCAN
37
38
39
40 // this makes it possible to do rolling combos (zx) with keys that
41 // convert to other keys on hold (z becomes ctrl when you hold it,
42 // and when this option isn't enabled, z rapidly followed by x
43 // actually sends Ctrl-x. That's bad.)
44 #define IGNORE_MOD_TAP_INTERRUPT
45 #undef  PERMISSIVE_HOLD
46 #define PREVENT_STUCK_MODIFIERS
47 // #define TAPPING_FORCE_HOLD
48 //#define RETRO_TAPPING
49
50 #define FORCE_NKRO
51
52 #ifndef TAPPING_TOGGLE
53 #define TAPPING_TOGGLE  1
54 #endif
55
56 #ifdef TAPPING_TERM
57 #undef TAPPING_TERM
58 #endif // TAPPING_TERM
59 #define TAPPING_TERM 175
60
61
62 // Disable action_get_macro and fn_actions, since we don't use these
63 // and it saves on space in the firmware.
64 #define NO_ACTION_MACRO
65 #define NO_ACTION_FUNCTION
66
67 #define DISABLE_LEADER
68
69 #define MACRO_TIMER 5
70
71