aboutsummaryrefslogtreecommitdiff
path: root/users/zer09/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'users/zer09/config.h')
-rw-r--r--users/zer09/config.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/users/zer09/config.h b/users/zer09/config.h
new file mode 100644
index 000000000..766806462
--- /dev/null
+++ b/users/zer09/config.h
@@ -0,0 +1,32 @@
1#ifndef USERSPACE_CONFIG_H
2#define USERSPACE_CONFIG_H
3
4#ifndef QMK_KEYS_PER_SCAN
5#define QMK_KEYS_PER_SCAN 4
6#endif // !QMK_KEYS_PER_SCAN
7
8// this makes it possible to do rolling combos (zx) with keys that
9// convert to other keys on hold (z becomes ctrl when you hold it,
10// and when this option isn't enabled, z rapidly followed by x
11// actually sends Ctrl-x. That's bad.)
12#define IGNORE_MOD_TAP_INTERRUPT
13#undef PERMISSIVE_HOLD
14#undef PREVENT_STUCK_MODIFIERS
15
16#define FORCE_NKRO
17
18#ifndef TAPPING_TOGGLE
19#define TAPPING_TOGGLE 1
20#endif
21
22#ifdef TAPPING_TERM
23#undef TAPPING_TERM
24#endif
25#define TAPPING_TERM 120
26
27// Disable action_get_macro and fn_actions, since we don't use these
28// and it saves on space in the firmware.
29#define NO_ACTION_MACRO
30#define NO_ACTION_FUNCTION
31
32#endif