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.

35 lines
1.1 KiB

7 years ago
7 years ago
7 years ago
7 years ago
  1. #ifndef KEYBOARDS_ERGODOX_CONFIG_H_
  2. #define KEYBOARDS_ERGODOX_CONFIG_H_
  3. #include QMK_KEYBOARD_CONFIG_H
  4. #undef MOUSEKEY_DELAY
  5. #undef MOUSEKEY_INTERVAL
  6. #undef MOUSEKEY_MAX_SPEED
  7. #undef MOUSEKEY_TIME_TO_MAX
  8. #define MOUSEKEY_DELAY 100
  9. #define MOUSEKEY_INTERVAL 20
  10. #define MOUSEKEY_MAX_SPEED 3
  11. #define MOUSEKEY_TIME_TO_MAX 10
  12. #define TAPPING_TOGGLE 1
  13. /* define if matrix has ghost */
  14. //#define MATRIX_HAS_GHOST
  15. #undef TAPPING_TERM
  16. #define TAPPING_TERM 300
  17. #define IGNORE_MOD_TAP_INTERRUPT // this makes it possible to do rolling combos (zx) with keys that convert to other keys on hold (z becomes ctrl when you hold it, and when this option isn't enabled, z rapidly followed by x actually sends Ctrl-x. That's bad.)
  18. /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
  19. #define LOCKING_SUPPORT_ENABLE
  20. /* Locking resynchronize hack */
  21. #define LOCKING_RESYNC_ENABLE
  22. /* key combination for command */
  23. #define IS_COMMAND() ( \
  24. get_mods() == (MOD_BIT(KC_LCTL) | MOD_BIT(KC_RCTL)) || \
  25. get_mods() == (MOD_BIT(KC_LSFT) | MOD_BIT(KC_RSFT)) \
  26. )
  27. #endif /* KEYBOARDS_ERGODOX_CONFIG_H_ */