diff options
| author | Akaash Suresh <casa.akaash@gmail.com> | 2020-01-09 13:57:54 -0600 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2020-01-09 11:57:54 -0800 |
| commit | caa70df816033c30dbbbf4c5a90d803c7bb1dfde (patch) | |
| tree | 4246ca4b2808cdd1b8ed681392258f195e579014 /users/curry/curry.h | |
| parent | 71de09d7510213d707ca1056c6e0eca840678d37 (diff) | |
| download | qmk_firmware-caa70df816033c30dbbbf4c5a90d803c7bb1dfde.tar.gz qmk_firmware-caa70df816033c30dbbbf4c5a90d803c7bb1dfde.zip | |
[Keymap] Userspace refactor, adding leader key functionality (#7790)
* Userspace refactor
* Fixed missed ifdef
* tapcode16, adjust layout
* glcdfont changes from #7745
* Modify Keymaps, add workman
* RGB & OLED update
Diffstat (limited to 'users/curry/curry.h')
| -rw-r--r-- | users/curry/curry.h | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/users/curry/curry.h b/users/curry/curry.h index a9de9ae51..ee4a73683 100644 --- a/users/curry/curry.h +++ b/users/curry/curry.h | |||
| @@ -1,18 +1,23 @@ | |||
| 1 | #pragma once | 1 | #pragma once |
| 2 | 2 | ||
| 3 | #include QMK_KEYBOARD_H | 3 | #include QMK_KEYBOARD_H |
| 4 | |||
| 5 | #include "version.h" | 4 | #include "version.h" |
| 6 | #include "eeprom.h" | 5 | #include "eeprom.h" |
| 7 | #include "wrappers.h" | 6 | #include "wrappers.h" |
| 8 | #include "process_records.h" | 7 | #include "process_records.h" |
| 9 | 8 | ||
| 10 | #ifdef TAP_DANCE_ENABLE | 9 | #if defined(TAP_DANCE_ENABLE) |
| 11 | # include "tap_dances.h" | 10 | # include "tap_dances.h" |
| 12 | #endif // TAP_DANCE_ENABLE | 11 | #endif // TAP_DANCE_ENABLE |
| 13 | #if defined(RGBLIGHT_ENABLE) || defined(RGB_MATRIX_ENABLE) | 12 | |
| 14 | # include "rgb_stuff.h" | 13 | #if defined(RGB_MATRIX_ENABLE) |
| 14 | # include "rgb_matrix_user.h" | ||
| 15 | #endif | 15 | #endif |
| 16 | |||
| 17 | #if defined(RGBLIGHT_ENABLE) | ||
| 18 | # include "rgb_lighting_user.h" | ||
| 19 | #endif | ||
| 20 | |||
| 16 | #if defined(KEYBOARD_lily58_rev1) & defined(PROTOCOL_LUFA) | 21 | #if defined(KEYBOARD_lily58_rev1) & defined(PROTOCOL_LUFA) |
| 17 | # include "lufa.h" | 22 | # include "lufa.h" |
| 18 | # include "split_util.h" | 23 | # include "split_util.h" |
| @@ -23,6 +28,7 @@ enum userspace_layers { | |||
| 23 | _QWERTY = 0, | 28 | _QWERTY = 0, |
| 24 | _COLEMAK, | 29 | _COLEMAK, |
| 25 | _DVORAK, | 30 | _DVORAK, |
| 31 | _WORKMAN, | ||
| 26 | _MODS, | 32 | _MODS, |
| 27 | _LOWER, | 33 | _LOWER, |
| 28 | _RAISE, | 34 | _RAISE, |
