]> git.donarmstrong.com Git - qmk_firmware.git/blob - users/replicaJunction/config.h
Configure Vagrant to use qmk_base_container (#6194)
[qmk_firmware.git] / users / replicaJunction / config.h
1 #pragma once
2
3
4 ////////////////////////////////////////////////////////////////////////////////
5 // Features That Can Be Enabled
6 // https://docs.qmk.fm/reference/config-options#features-that-can-be-enabled
7 ////////////////////////////////////////////////////////////////////////////////
8
9 ////////////////////////////////////////////////////////////////////////////////
10 // Behaviors That Can Be Configured
11 // https://docs.qmk.fm/reference/config-options#behaviors-that-can-be-configured
12 ////////////////////////////////////////////////////////////////////////////////
13
14 // MS the button needs to be held before a tap becomes a hold (default: 200)
15 #undef TAPPING_TERM
16 #define TAPPING_TERM    250
17
18 // Makes it easier for fast typists to use dual-role keys. See additional details here:
19 // https://docs.qmk.fm/features/advanced-keycodes#permissive-hold
20 #define PERMISSIVE_HOLD
21
22 // MS after tapping the Leader key to listen for a sequence (default: 300)
23 #undef LEADER_TIMEOUT
24 #define LEADER_TIMEOUT  750
25
26 // This makes it possible to do rolling combos (zx) with keys that convert to other keys on hold
27 // (for example, if z becomes ctrl when you hold it, when this option isn't enabled, z rapidly
28 // followed by x actually sends Ctrl-x. That's bad.)
29 #define IGNORE_MOD_TAP_INTERRUPT
30
31
32
33 ////////////////////////////////////////////////////////////////////////////////
34 // Mouse Key Options
35 // https://docs.qmk.fm/reference/config-options#mouse-key-options
36 ////////////////////////////////////////////////////////////////////////////////
37
38 #ifdef MOUSEKEY_ENABLE
39 // Mouse key config
40
41 // Frequency with which cursor movements are sent. Lower means more resolution / DPI.
42 // Default: 20
43 // #undef MOUSEKEY_INTERVAL
44 // #define MOUSEKEY_INTERVAL       20
45
46 // MS after pressing the key before initial movement begins. Lower means quicker response.
47 // Default: 0
48 // #undef MOUSEKEY_DELAY
49 // #define MOUSEKEY_DELAY          0
50
51 // MS it takes the cursor to accelerate to max speed
52 // Default: 60
53 // #undef MOUSEKEY_TIME_TO_MAX
54 // #define MOUSEKEY_TIME_TO_MAX    60
55
56 // Maximum speed for the mouse keys
57 // Default: 7
58 // #undef MOUSEKEY_MAX_SPEED
59 // #define MOUSEKEY_MAX_SPEED      7
60
61 // Delay before the mouse wheel
62 // Default: 0
63 // #undef MOUSEKEY_WHEEL_DELAY
64 // #define MOUSEKEY_WHEEL_DELAY    0
65
66 #endif // MOUSEKEY_ENABLE