config.h 688 B

123456789101112131415161718192021
  1. #ifndef USERSPACE_CONFIG_H
  2. #define USERSPACE_CONFIG_H
  3. #ifndef QMK_KEYS_PER_SCAN
  4. #define QMK_KEYS_PER_SCAN 4
  5. #endif // QMK KEYS PER SCAN
  6. // this makes it possible to do rolling combos (zx) with keys that
  7. // convert to other keys on hold (z becomes ctrl when you hold it,
  8. // and when this option isn't enabled, z rapidly followed by x
  9. // actually sends Ctrl-x. That's bad.)
  10. #define IGNORE_MOD_TAP_INTERRUPT
  11. #define PERMISSIVE_HOLD
  12. #undef PREVENT_STUCK_MODIFIERS
  13. // Disable action_get_macro and fn_actions, since we don't use these
  14. // and it saves on space in the firmware.
  15. #define NO_ACTION_MACRO
  16. #define NO_ACTION_FUNCTION
  17. #endif // !USERSPACE_CONFIG_H