46 lines
1.4 KiB
C
46 lines
1.4 KiB
C
/* Copyright 2021 Stan Gurenkov <rococo04_fox@icloud.com>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#pragma once
|
|
|
|
#define ONESHOT_TAP_TOGGLE 2
|
|
#define ONESHOT_TIMEOUT 5000
|
|
#define LEADER_TIMEOUT 600
|
|
#define LEADER_PER_KEY_TIMING 300
|
|
|
|
// default but used in macros
|
|
#define TAPPING_TERM 300
|
|
|
|
// Prevent normal rollover on alphas from accidentally triggering mods.
|
|
#define IGNORE_MOD_TAP_INTERRUPT
|
|
|
|
// Auto Shift and Retro Shift (Auto Shift for Tap Hold).
|
|
#define AUTO_SHIFT_TIMEOUT TAPPING_TERM
|
|
|
|
// Recommended for heavy chording.
|
|
#define QMK_KEYS_PER_SCAN 4
|
|
|
|
// Mouse key speed and acceleration.
|
|
#undef MOUSEKEY_DELAY
|
|
#define MOUSEKEY_DELAY 0
|
|
#undef MOUSEKEY_INTERVAL
|
|
#define MOUSEKEY_INTERVAL 16
|
|
#undef MOUSEKEY_WHEEL_DELAY
|
|
#define MOUSEKEY_WHEEL_DELAY 0
|
|
#undef MOUSEKEY_MAX_SPEED
|
|
#define MOUSEKEY_MAX_SPEED 6
|
|
#undef MOUSEKEY_TIME_TO_MAX
|
|
#define MOUSEKEY_TIME_TO_MAX 64
|