aboutsummaryrefslogtreecommitdiff
path: root/layouts/community/ergodox/replicaJunction/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/community/ergodox/replicaJunction/config.h')
-rw-r--r--layouts/community/ergodox/replicaJunction/config.h64
1 files changed, 64 insertions, 0 deletions
diff --git a/layouts/community/ergodox/replicaJunction/config.h b/layouts/community/ergodox/replicaJunction/config.h
new file mode 100644
index 000000000..c69ce8cea
--- /dev/null
+++ b/layouts/community/ergodox/replicaJunction/config.h
@@ -0,0 +1,64 @@
1/*
2Config file - Ergodox QMK with replicaJunction layout
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#ifndef KEYBOARDS_ERGODOX_CONFIG_H_
19#define KEYBOARDS_ERGODOX_CONFIG_H_
20
21#include QMK_KEYBOARD_CONFIG_H
22
23
24#undef MOUSEKEY_DELAY
25#undef MOUSEKEY_INTERVAL
26#undef MOUSEKEY_MAX_SPEED
27#undef MOUSEKEY_TIME_TO_MAX
28
29#define MOUSEKEY_DELAY 100
30#define MOUSEKEY_INTERVAL 20
31#define MOUSEKEY_MAX_SPEED 3
32#define MOUSEKEY_TIME_TO_MAX 10
33
34#define TAPPING_TOGGLE 1
35
36/* define if matrix has ghost */
37//#define MATRIX_HAS_GHOST
38
39// MS the button needs to be held before a tap becomes a hold (default: 200)
40#define TAPPING_TERM 200
41
42#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.)
43
44// I don't have any locking keys, so I don't need these features
45
46
47/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
48
49//#define LOCKING_SUPPORT_ENABLE
50/* Locking resynchronize hack */
51//#define LOCKING_RESYNC_ENABLE
52
53/* Prevent modifiers from sticking when switching layers */
54/* Uses 5 bytes of memory per 8 keys, but makes sure modifiers don't get "stuck" switching layers */
55#define PREVENT_STUCK_MODIFIERS
56
57/* key combination for command */
58#define IS_COMMAND() ( \
59 keyboard_report->mods == (MOD_BIT(KC_LCTL) | MOD_BIT(KC_RCTL)) || \
60 keyboard_report->mods == (MOD_BIT(KC_LSFT) | MOD_BIT(KC_RSFT)) \
61)
62
63
64#endif /* KEYBOARDS_ERGODOX_CONFIG_H_ */