diff options
Diffstat (limited to 'users/miles2go/config.h')
-rw-r--r-- | users/miles2go/config.h | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/users/miles2go/config.h b/users/miles2go/config.h new file mode 100644 index 000000000..3fb52b8a5 --- /dev/null +++ b/users/miles2go/config.h | |||
@@ -0,0 +1,53 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #ifdef RGBLIGHT_ENABLE | ||
4 | #define RGBLIGHT_SLEEP | ||
5 | #undef RGBLIGHT_ANIMATIONS | ||
6 | #define RGBLIGHT_EFFECT_BREATHING | ||
7 | #endif // RGBLIGHT_ENABLE | ||
8 | |||
9 | #ifndef QMK_KEYS_PER_SCAN | ||
10 | #define QMK_KEYS_PER_SCAN 4 | ||
11 | #endif // !QMK_KEYS_PER_SCAN | ||
12 | |||
13 | #undef FORCE_NKRO | ||
14 | |||
15 | #ifndef TAPPING_TOGGLE | ||
16 | #define TAPPING_TOGGLE 3 | ||
17 | #endif | ||
18 | |||
19 | #ifdef TAPPING_TERM | ||
20 | #undef TAPPING_TERM | ||
21 | #endif // TAPPING_TERM | ||
22 | #define TAPPING_TERM 200 | ||
23 | //if no chord during tapping term, do the keystroke | ||
24 | #define RETRO_TAPPING | ||
25 | |||
26 | // Disable action_get_macro and fn_actions, since we don't use these | ||
27 | // and it saves on space in the firmware. | ||
28 | // LTO_ENABLE automatically enables these | ||
29 | //#define NO_ACTION_MACRO | ||
30 | //#define NO_ACTION_FUNCTION | ||
31 | #define MACRO_TIMER 5 | ||
32 | |||
33 | |||
34 | |||
35 | #define USE_BABBLEPASTE | ||
36 | // All options | ||
37 | #define BABL_MOVE // Uncomment to add basic cursor movement | ||
38 | #define BABL_OSKEYS // This adds Cut, paste, window movement and common OS shortcuts | ||
39 | #define BABL_BROWSER // Browser shortcuts, with Chrome/Firefox as the default. | ||
40 | // edit the appropriate OS config file to enable Safari, Edge, vimpirator &etc. | ||
41 | #define BABL_APP // Application specific settings this has sub-options. | ||
42 | #define BABL_APP_CELLS // spreadsheets and tables | ||
43 | #define BABL_APP_EDITOR // Fancy editor commands | ||
44 | #define BABL_APP_WINDOWSPLITTING // splitting frames & windows | ||
45 | |||
46 | //All OSes | ||
47 | #define BABL_WINDOWS | ||
48 | #define BABL_READMUX | ||
49 | #define BABL_VI | ||
50 | #define BABL_MAC | ||
51 | #define BABL_LINUX | ||
52 | #define BABL_EMACS | ||
53 | #define BABL_CHROMEOS | ||