]> git.donarmstrong.com Git - qmk_firmware.git/blob - users/drashna/config.h
Keymap: Update to drashna keymaps and userspace (#3992)
[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 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 #ifdef KEYBOARD_ergodox_ez
59   #define TAPPING_TERM 185
60 #else
61   #define TAPPING_TERM 175
62 #endif
63
64
65 // Disable action_get_macro and fn_actions, since we don't use these
66 // and it saves on space in the firmware.
67 #define NO_ACTION_MACRO
68 #define NO_ACTION_FUNCTION
69
70 #define DISABLE_LEADER
71
72 #define MACRO_TIMER 5
73
74