2022-12-10 21:12:18 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Configure the global tapping term (default: 200ms)
|
2023-01-08 01:57:43 +08:00
|
|
|
#define TAPPING_TERM 200
|
2022-12-10 21:12:18 +08:00
|
|
|
|
|
|
|
// Activate the modifier when another key is pressed and released while the mod-tap is held.
|
|
|
|
#define PERMISSIVE_HOLD
|
|
|
|
|
|
|
|
// Prevent normal rollover on alphas from accidentally triggering mods.
|
|
|
|
#define IGNORE_MOD_TAP_INTERRUPT
|
|
|
|
|
|
|
|
// Enable rapid switch from tap to hold, disables double tap hold auto-repeat.
|
|
|
|
#define TAPPING_FORCE_HOLD
|
|
|
|
|
|
|
|
// One Shot Keys
|
|
|
|
#define ONESHOT_TAP_TOGGLE 5
|
|
|
|
#define ONESHOT_TIMEOUT 5000
|
|
|
|
|
|
|
|
// Caps Word
|
|
|
|
#define CAPS_WORD_IDLE_TIMEOUT 5000
|
|
|
|
|