config.h 1012 B

123456789101112131415161718192021222324252627282930
  1. #pragma once
  2. #undef MOUSEKEY_DELAY
  3. #undef MOUSEKEY_INTERVAL
  4. #undef MOUSEKEY_MAX_SPEED
  5. #undef MOUSEKEY_TIME_TO_MAX
  6. #define MOUSEKEY_DELAY 100
  7. #define MOUSEKEY_INTERVAL 20
  8. #define MOUSEKEY_MAX_SPEED 3
  9. #define MOUSEKEY_TIME_TO_MAX 10
  10. #define TAPPING_TOGGLE 1
  11. /* define if matrix has ghost */
  12. //#define MATRIX_HAS_GHOST
  13. #undef TAPPING_TERM
  14. #define TAPPING_TERM 300
  15. #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.)
  16. /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
  17. #define LOCKING_SUPPORT_ENABLE
  18. /* Locking resynchronize hack */
  19. #define LOCKING_RESYNC_ENABLE
  20. /* key combination for command */
  21. #define IS_COMMAND() ( \
  22. get_mods() == (MOD_BIT(KC_LCTL) | MOD_BIT(KC_RCTL)) || \
  23. get_mods() == (MOD_BIT(KC_LSFT) | MOD_BIT(KC_RSFT)) \
  24. )