You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
651 B

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