#pragma once
#undef MOUSEKEY_DELAY
#undef MOUSEKEY_INTERVAL
#undef MOUSEKEY_MAX_SPEED
#undef MOUSEKEY_TIME_TO_MAX
#defineMOUSEKEY_DELAY100#defineMOUSEKEY_INTERVAL20#defineMOUSEKEY_MAX_SPEED3#defineMOUSEKEY_TIME_TO_MAX10#defineTAPPING_TOGGLE1/* define if matrix has ghost *///#define MATRIX_HAS_GHOST
#undef TAPPING_TERM
#defineTAPPING_TERM300#defineIGNORE_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.)/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */#defineLOCKING_SUPPORT_ENABLE/* Locking resynchronize hack */#defineLOCKING_RESYNC_ENABLE/* key combination for command */#defineIS_COMMAND()( \
get_mods()==(MOD_BIT(KC_LCTL)|MOD_BIT(KC_RCTL))|| \
get_mods()==(MOD_BIT(KC_LSFT)|MOD_BIT(KC_RSFT)) \
)