config.h 695 B

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