config.h 863 B

123456789101112131415161718192021222324252627282930313233
  1. #pragma once
  2. #ifndef QMK_KEYS_PER_SCAN
  3. #define QMK_KEYS_PER_SCAN 4
  4. #endif // QMK KEYS PER SCAN
  5. // this makes it possible to do rolling combos (zx) with keys that
  6. // convert to other keys on hold (z becomes ctrl when you hold it,
  7. // and when this option isn't enabled, z rapidly followed by x
  8. // actually sends Ctrl-x. That's bad.)
  9. #define IGNORE_MOD_TAP_INTERRUPT
  10. #undef PERMISSIVE_HOLD
  11. #define PREVENT_STUCK_MODIFIERS
  12. #ifdef TAPPING_TERM
  13. #undef TAPPING_TERM
  14. #endif // TAPPING_TERM
  15. #define TAPPING_TERM 175
  16. #define RETRO_TAPPING
  17. // Disable action_get_macro and fn_actions, since we don't use these
  18. // and it saves on space in the firmware.
  19. #ifndef NO_DEBUG
  20. #define NO_DEBUG
  21. #endif // !NO_DEBUG
  22. #if !defined(NO_PRINT) && !defined(CONSOLE_ENABLE)
  23. #define NO_PRINT
  24. #endif // !NO_PRINT
  25. #define NO_ACTION_MACRO
  26. #define NO_ACTION_FUNCTION
  27. #define MACRO_TIMER 5