]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/ergodox/config.h
049c707a561343c1c8ebfbdfc4f35aa5965b372f
[qmk_firmware.git] / keyboards / ergodox / config.h
1 #ifndef KEYBOARDS_ERGODOX_CONFIG_H_
2 #define KEYBOARDS_ERGODOX_CONFIG_H_
3
4 #include "config_common.h"
5
6 #define MOUSEKEY_DELAY          100
7 #define MOUSEKEY_INTERVAL       20
8 #define MOUSEKEY_MAX_SPEED      3
9 #define MOUSEKEY_TIME_TO_MAX    10
10
11 #define TAPPING_TOGGLE  1
12
13 /* define if matrix has ghost */
14 //#define MATRIX_HAS_GHOST
15
16 #define TAPPING_TERM    200
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
19 /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
20 #define LOCKING_SUPPORT_ENABLE
21 /* Locking resynchronize hack */
22 #define LOCKING_RESYNC_ENABLE
23
24 /* key combination for command */
25 #define IS_COMMAND() ( \
26     keyboard_report->mods == (MOD_BIT(KC_LCTL) | MOD_BIT(KC_RCTL)) || \
27     keyboard_report->mods == (MOD_BIT(KC_LSFT) | MOD_BIT(KC_RSFT)) \
28 )
29
30 #ifdef SUBPROJECT_ez
31     #include "ez/config.h"
32 #endif
33 #ifdef SUBPROJECT_infinity
34     #include "infinity/config.h"
35 #endif
36
37
38 #endif /* KEYBOARDS_ERGODOX_CONFIG_H_ */