qmk_userspace/users/t4corun/config.h
Victor a1764f59ac
Klor Fix, Userspace Adds, Keymap tweaks
- Updated Klor config for updated haptic defines
- Music mode is now off for good
- Added userspace config for haptics and audio
- Went back to numpad 0 on the thumbs
- Added haptic and audio keys on the config layer
- removed all combos except drag scroll
- Updated and added overrides for haptics/audio/Mousekeys
2024-05-24 00:13:24 -05:00

63 lines
No EOL
1.3 KiB
C

/*
* Set build options for
* - consistent configuration across all keyboards
* - enable features specific to certain board (e.g. encoders, rgb, oled)
* - a way to save memory on MCU
*
* Pattern
* - This will hold config for features we force to be on
* - bring in additional configuration for features that can be enabled/disabled
* - clear and reset the setting
*/
#pragma once
//Turn off settings we won't use to save memory
#undef LOCKING_SUPPORT_ENABLE
#undef LOCKING_RESYNC_ENABLE
//Clear variables we plan to use that might be set elsewhere
#undef USB_POLLING_INTERVAL_MS
//Set common configuration for all keyboards
#define USB_POLLING_INTERVAL_MS 1
#include "config/tapping_config.h"
#if defined(CAPS_WORD_ENABLE)
# include "config/capsword_config.h"
#endif
#if defined(RGB_MATRIX_ENABLE)
# include "config/rgbmatrix_config.h"
#endif
#if defined(MOUSEKEY_ENABLE)
# include "config/mouse_config.h"
#endif
#if defined(COMBO_ENABLE)
# include "config/combo_config.h"
#endif
#if defined(SPLIT_KEYBOARD)
# include "config/split_config.h"
#endif
#if defined(OLED_ENABLE)
# include "config/oled_config.h"
#endif
#if defined(HAPTIC_ENABLE)
# include "config/haptic_config.h"
#endif
#if defined(AUDIO_ENABLE)
# include "config/audio_config.h"
#endif