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
820 B

  1. // Based off of this section:
  2. // https://github.com/qmk/qmk_firmware/blob/master/doc/BUILD_GUIDE.md#the-configh-file
  3. #ifndef CONFIG_BLAKEDIETZ_H
  4. #define CONFIG_BLAKEDIETZ_H
  5. // Bring in original defaults
  6. #include "../../config.h"
  7. // Define mousekey settings
  8. #define MOUSEKEY_DELAY 0
  9. #define MOUSEKEY_INTERVAL 20
  10. #define MOUSEKEY_MAX_SPEED 2
  11. #define MOUSEKEY_TIME_TO_MAX 5
  12. #define MOUSEKEY_WHEEL_DELAY 0
  13. // Set up tapdance functionality
  14. //#define TAPPING_TOGGLE 1
  15. // TAPPING_TERM is set in config.h this defaults to 200
  16. // This makes it possible to do rolling combos (zx) with keys that convert to other keys on hold (z becomes ctrl when
  17. // you hold it, and when this option isn't enabled, z rapidly followed by x actually sends Ctrl-x. That's bad.)
  18. #define IGNORE_MOD_TAP_INTERRUPT
  19. #endif