aboutsummaryrefslogtreecommitdiff
path: root/users/drashna/drashna.h
diff options
context:
space:
mode:
Diffstat (limited to 'users/drashna/drashna.h')
-rw-r--r--users/drashna/drashna.h21
1 files changed, 11 insertions, 10 deletions
diff --git a/users/drashna/drashna.h b/users/drashna/drashna.h
index 6a45141d9..7bcae881e 100644
--- a/users/drashna/drashna.h
+++ b/users/drashna/drashna.h
@@ -18,25 +18,25 @@
18#include QMK_KEYBOARD_H 18#include QMK_KEYBOARD_H
19 19
20#include "eeprom.h" 20#include "eeprom.h"
21#include "wrappers.h" 21#include "keyrecords/wrappers.h"
22#include "process_records.h" 22#include "keyrecords/process_records.h"
23#ifdef TAP_DANCE_ENABLE 23#ifdef TAP_DANCE_ENABLE
24# include "tap_dances.h" 24# include "keyrecords/tap_dances.h"
25#endif // TAP_DANCE_ENABLE 25#endif // TAP_DANCE_ENABLE
26#if defined(RGBLIGHT_ENABLE) 26#if defined(RGBLIGHT_ENABLE)
27# include "rgb_stuff.h" 27# include "rgb/rgb_stuff.h"
28#endif 28#endif
29#if defined(RGB_MATRIX_ENABLE) 29#if defined(RGB_MATRIX_ENABLE)
30# include "rgb_matrix_stuff.h" 30# include "rgb/rgb_matrix_stuff.h"
31#endif 31#endif
32#if defined(OLED_ENABLE) 32#if defined(OLED_ENABLE)
33# include "oled_stuff.h" 33# include "oled/oled_stuff.h"
34#endif
35#if defined(PIMORONI_TRACKBALL_ENABLE)
36# include "drivers/sensors/pimoroni_trackball.h"
37#endif 34#endif
38#ifdef SPLIT_KEYBOARD 35#ifdef SPLIT_KEYBOARD
39# include "transport_sync.h" 36# include "split/transport_sync.h"
37#endif
38#ifdef POINTING_DEVICE_ENABLE
39# include "pointing/pointing.h"
40#endif 40#endif
41 41
42/* Define layer names */ 42/* Define layer names */
@@ -113,6 +113,7 @@ typedef union {
113 bool nuke_switch :1; 113 bool nuke_switch :1;
114 bool swapped_numbers :1; 114 bool swapped_numbers :1;
115 bool rgb_matrix_idle_anim :1; 115 bool rgb_matrix_idle_anim :1;
116 bool autocorrection :1;
116 }; 117 };
117} userspace_config_t; 118} userspace_config_t;
118// clang-format on 119// clang-format on