config.h 576 B

12345678910111213141516171819202122
  1. #ifndef CONFIG_USER_H
  2. #define CONFIG_USER_H
  3. #include "../../config.h"
  4. // place overrides here
  5. #ifdef DEBOUNCING_DELAY
  6. #undef DEBOUNCING_DELAY
  7. #endif
  8. #define DEBOUNCING_DELAY 2
  9. #define MOUSEKEY_INTERVAL 10
  10. #define MOUSEKEY_DELAY 0
  11. #define MOUSEKEY_TIME_TO_MAX 120
  12. #define MOUSEKEY_MAX_SPEED 9
  13. #define MOUSEKEY_WHEEL_DELAY 0
  14. #define MOUSEKEY_WHEEL_MAX_SPEED 2
  15. #define MOUSEKEY_WHEEL_TIME_TO_MAX 120
  16. #define TAPPING_TOGGLE 1
  17. #define TAPPING_TERM 200
  18. #define IGNORE_MOD_TAP_INTERRUPT
  19. #define FORCE_NKRO
  20. #endif