config.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. #pragma once
  2. #ifdef AUDIO_ENABLE
  3. #define AUDIO_CLICKY
  4. #define STARTUP_SONG SONG(E1M1_DOOM)
  5. #define GOODBYE_SONG SONG(SONIC_RING)
  6. #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \
  7. SONG(COLEMAK_SOUND), \
  8. SONG(DVORAK_SOUND), \
  9. SONG(OVERWATCH_THEME) \
  10. }
  11. #define AUDIO_CLICKY_FREQ_RANDOMNESS 1.5f
  12. // #ifdef RGBLIGHT_ENABLE
  13. // #define NO_MUSIC_MODE
  14. // #endif //RGBLIGHT_ENABLE
  15. #endif
  16. #ifdef RGBLIGHT_ENABLE
  17. #define RGBLIGHT_SLEEP
  18. #endif // RGBLIGHT_ENABLE
  19. #ifndef ONESHOT_TAP_TOGGLE
  20. #define ONESHOT_TAP_TOGGLE 2
  21. #endif // !ONESHOT_TAP_TOGGLE
  22. #ifndef ONESHOT_TIMEOUT
  23. #define ONESHOT_TIMEOUT 3000
  24. #endif// !ONESHOT_TIMEOUT
  25. #ifndef QMK_KEYS_PER_SCAN
  26. #define QMK_KEYS_PER_SCAN 4
  27. #endif // !QMK_KEYS_PER_SCAN
  28. // this makes it possible to do rolling combos (zx) with keys that
  29. // convert to other keys on hold (z becomes ctrl when you hold it,
  30. // and when this option isn't enabled, z rapidly followed by x
  31. // actually sends Ctrl-x. That's bad.)
  32. #define IGNORE_MOD_TAP_INTERRUPT
  33. #undef PERMISSIVE_HOLD
  34. // #define TAPPING_FORCE_HOLD
  35. //#define RETRO_TAPPING
  36. #define FORCE_NKRO
  37. #ifndef TAPPING_TOGGLE
  38. #define TAPPING_TOGGLE 1
  39. #endif
  40. #ifdef TAPPING_TERM
  41. #undef TAPPING_TERM
  42. #endif // TAPPING_TERM
  43. #define TAPPING_TERM 175
  44. // Disable action_get_macro and fn_actions, since we don't use these
  45. // and it saves on space in the firmware.
  46. #define NO_ACTION_MACRO
  47. #define NO_ACTION_FUNCTION
  48. #define MACRO_TIMER 5