config.h 772 B

1234567891011121314151617181920212223242526
  1. #ifndef CONFIG_USER_H
  2. #define CONFIG_USER_H
  3. #include QMK_KEYBOARD_CONFIG_H
  4. #ifdef RGBLIGHT_ENABLE
  5. #undef RGBLIGHT_SAT_STEP
  6. #define RGBLIGHT_SAT_STEP 12
  7. #define RGBLIGHT_EFFECT_KNIGHT_LENGTH 7
  8. #define RGBLIGHT_EFFECT_SNAKE_LENGTH 7
  9. #define RGBLIGHT_EFFECT_BREATHE_CENTER 1
  10. #endif // RGBLIGHT_ENABLE
  11. #ifdef TAPPING_TERM
  12. #undef TAPPING_TERM
  13. #endif
  14. #define TAPPING_TERM 175
  15. #undef PERMISSIVE_HOLD
  16. #define IGNORE_MOD_TAP_INTERRUPT // this makes it possible to do rolling combos (zx) with keys that convert to other keys on hold (z becomes ctrl when you hold it, and when this option isn't enabled, z rapidly followed by x actually sends Ctrl-x. That's bad.)
  17. #define ONESHOT_TAP_TOGGLE 2
  18. #undef PRODUCT
  19. #define PRODUCT DrashnaDox - Hacked ErgoDox EZ Shine
  20. #endif