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