forked from forks/qmk_firmware
1b7a003d84
* feat(build): added script for compiling with docker easily * chore: bring my own build with docker to master * feat: merge ergodox ez into latest maste * chore: remove my build with docker file * chore: remove my changes to process_leader * feat: more modular user danielo515 * Apply suggestions from @ridingqwerty Co-Authored-By: ridingqwerty <george.g.koenig@gmail.com> * chore: more suggestions implemented * chore: add my basic details * Apply suggestions from @drashna Co-Authored-By: Drashna Jaelre <drashna@live.com> * fix: more @drashna fixes * feat: @fauxpark optimization * fix: some more @drashna improvements Co-Authored-By: Drashna Jaelre <drashna@live.com> * chore: small improvement on layout * fix: some more @drashna improvements * chore: remove some F dance Co-authored-by: ridingqwerty <george.g.koenig@gmail.com> Co-authored-by: Drashna Jaelre <drashna@live.com>
38 lines
782 B
C
38 lines
782 B
C
/*
|
|
Set any config.h overrides for your specific keymap here.
|
|
See config.h options at https://docs.qmk.fm/#/config_options?id=the-configh-file
|
|
*/
|
|
#pragma once
|
|
|
|
#define IGNORE_MOD_TAP_INTERRUPT
|
|
#define TAPPING_TERM 200
|
|
|
|
#define ONESHOT_TAP_TOGGLE 3
|
|
|
|
#define RGBLIGHT_SLEEP
|
|
|
|
#undef MOUSEKEY_TIME_TO_MAX
|
|
#define MOUSEKEY_TIME_TO_MAX 50
|
|
|
|
#undef MOUSEKEY_WHEEL_TIME_TO_MAX
|
|
#define MOUSEKEY_WHEEL_TIME_TO_MAX 60
|
|
// Timeout settings for leader key
|
|
#undef LEADER_TIMEOUT
|
|
#define LEADER_TIMEOUT 350
|
|
#define LEADER_PER_KEY_TIMING
|
|
|
|
#undef DEBOUNCE
|
|
#define DEBOUNCE 45
|
|
// Memory saving
|
|
#ifdef CONSOLE_ENABLE
|
|
# define NO_DEBUG
|
|
# define NO_PRINT
|
|
#endif
|
|
|
|
#ifndef LINK_TIME_OPTIMIZATION_ENABLE
|
|
# define NO_ACTION_MACRO
|
|
# define NO_ACTION_FUNCTION
|
|
#endif
|
|
|
|
#undef RGBLIGHT_ANIMATIONS
|