config.h 736 B

12345678910111213141516171819202122232425262728293031
  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. #undef PREVENT_STUCK_MODIFIERS
  12. #define FORCE_NKRO
  13. #ifndef TAPPING_TOGGLE
  14. #define TAPPING_TOGGLE 1
  15. #endif
  16. #ifdef TAPPING_TERM
  17. #undef TAPPING_TERM
  18. #endif
  19. #define TAPPING_TERM 120
  20. // Disable action_get_macro and fn_actions, since we don't use these
  21. // and it saves on space in the firmware.
  22. #define NO_ACTION_MACRO
  23. #define NO_ACTION_FUNCTION