summaryrefslogtreecommitdiff
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 6a45141d9a..7bcae881e4 100644
--- a/users/drashna/drashna.h
+++ b/users/drashna/drashna.h
@@ -18,25 +18,25 @@
#include QMK_KEYBOARD_H
#include "eeprom.h"
-#include "wrappers.h"
-#include "process_records.h"
+#include "keyrecords/wrappers.h"
+#include "keyrecords/process_records.h"
#ifdef TAP_DANCE_ENABLE
-# include "tap_dances.h"
+# include "keyrecords/tap_dances.h"
#endif // TAP_DANCE_ENABLE
#if defined(RGBLIGHT_ENABLE)
-# include "rgb_stuff.h"
+# include "rgb/rgb_stuff.h"
#endif
#if defined(RGB_MATRIX_ENABLE)
-# include "rgb_matrix_stuff.h"
+# include "rgb/rgb_matrix_stuff.h"
#endif
#if defined(OLED_ENABLE)
-# include "oled_stuff.h"
-#endif
-#if defined(PIMORONI_TRACKBALL_ENABLE)
-# include "drivers/sensors/pimoroni_trackball.h"
+# include "oled/oled_stuff.h"
#endif
#ifdef SPLIT_KEYBOARD
-# include "transport_sync.h"
+# include "split/transport_sync.h"
+#endif
+#ifdef POINTING_DEVICE_ENABLE
+# include "pointing/pointing.h"
#endif
/* Define layer names */
@@ -113,6 +113,7 @@ typedef union {
bool nuke_switch :1;
bool swapped_numbers :1;
bool rgb_matrix_idle_anim :1;
+ bool autocorrection :1;
};
} userspace_config_t;
// clang-format on