forked from forks/qmk_firmware
9cf69a1997
* Replace custom RCTRL implementation with built-in LM Caveat: sends LCtrl instead of RCtrl * Enable VIA support in KBD6X keymap * Disable LTO on ChibiOS boards * Disable locking support and Magic keycodes for all keymaps * Organize and annotate rules.mk and config.h files * Enable Console for Melody96 keymap * L_RANGE_KEYMAP → LAYERS_KEYMAP * Revert "Replace custom RCTRL implementation with built-in LM" This reverts commit 17d706a82d7e31b53cd84efeb9b2ddb9922a2368. * Set DYNAMIC_KEYMAP_LAYER_COUNT to 3 in Doro67 and Wasdat keymaps * Enable Bootmagic Lite for all VIA keymaps
39 lines
956 B
C
39 lines
956 B
C
#pragma once
|
|
|
|
// Keyboard reports
|
|
#define FORCE_NKRO
|
|
#define USB_POLLING_INTERVAL_MS 1
|
|
|
|
// Mouse keys
|
|
#define MOUSEKEY_DELAY 0
|
|
#define MOUSEKEY_INTERVAL 10
|
|
#define MOUSEKEY_MAX_SPEED 4
|
|
#define MOUSEKEY_TIME_TO_MAX 100
|
|
#define MOUSEKEY_WHEEL_DELAY 0
|
|
#define MOUSEKEY_WHEEL_INTERVAL 50
|
|
#define MOUSEKEY_WHEEL_MAX_SPEED 4
|
|
#define MOUSEKEY_WHEEL_TIME_TO_MAX 50
|
|
|
|
// RGB lighting
|
|
#undef RGBLIGHT_ANIMATIONS
|
|
#define RGBLIGHT_EFFECT_BREATHING
|
|
#define RGBLIGHT_EFFECT_RAINBOW_MOOD
|
|
#define RGBLIGHT_EFFECT_RAINBOW_SWIRL
|
|
#define RGBLIGHT_EFFECT_SNAKE
|
|
|
|
// Tapping
|
|
#define PERMISSIVE_HOLD
|
|
#define TAPPING_TERM 200
|
|
#define TAPPING_TOGGLE 3
|
|
|
|
// Unicode
|
|
#define UNICODE_CYCLE_PERSIST false
|
|
#define UNICODE_SELECTED_MODES UC_WINC, UC_WIN, UC_LNX
|
|
#define UNICODE_KEY_WINC KC_RGUI
|
|
|
|
// Firmware size reduction
|
|
#undef LOCKING_SUPPORT_ENABLE
|
|
#define NO_ACTION_FUNCTION
|
|
#define NO_ACTION_MACRO
|
|
#define NO_ACTION_ONESHOT
|