2024-09-22 17:58:29 +02:00
|
|
|
/**
|
|
|
|
* SPDX-FileCopyrightText: 2024 Christoph Cullmann <christoph@cullmann.io>
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
2024-09-22 17:50:24 +02:00
|
|
|
*/
|
2023-08-12 22:02:23 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// no more than 8 layers
|
|
|
|
#define LAYER_STATE_8BIT
|
|
|
|
|
|
|
|
// we don't have any lock switches
|
|
|
|
#undef LOCKING_SUPPORT_ENABLE
|
|
|
|
#undef LOCKING_RESYNC_ENABLE
|
|
|
|
|
2023-10-08 18:06:02 +02:00
|
|
|
// deactivate more features
|
|
|
|
#define NO_ACTION_MACRO
|
|
|
|
#define NO_ACTION_FUNCTION
|
2023-10-08 18:46:26 +02:00
|
|
|
#define NO_MUSIC_MODE
|
2023-10-08 18:06:02 +02:00
|
|
|
|
2023-08-12 22:02:23 +02:00
|
|
|
// enable NKRO by default
|
|
|
|
#define FORCE_NKRO
|
|
|
|
|
2024-09-22 18:40:23 +02:00
|
|
|
// many settings taken from https://github.com/getreuer/qmk-keymap
|
2024-09-15 16:41:39 +02:00
|
|
|
|
2024-09-22 18:40:23 +02:00
|
|
|
// don't confuse apps
|
|
|
|
#define TAP_CODE_DELAY 5
|
2024-09-22 17:50:24 +02:00
|
|
|
|
|
|
|
// home row mods
|
2024-09-22 18:40:23 +02:00
|
|
|
#define TAPPING_TERM 170
|
|
|
|
#define TAPPING_TERM_PER_KEY
|
|
|
|
#define PERMISSIVE_HOLD
|
|
|
|
#define QUICK_TAP_TERM_PER_KEY
|
2024-09-22 17:50:24 +02:00
|
|
|
|
2024-09-22 18:40:23 +02:00
|
|
|
// enable streak detection
|
|
|
|
#define ACHORDION_STREAK
|
2024-09-15 16:41:39 +02:00
|
|
|
|
2024-09-20 17:28:34 +02:00
|
|
|
//
|
|
|
|
// underglow configuration
|
|
|
|
//
|
2024-09-15 16:41:39 +02:00
|
|
|
|
2024-09-20 17:28:34 +02:00
|
|
|
// no lights if we sleep
|
|
|
|
#define RGBLIGHT_SLEEP
|
|
|
|
|
|
|
|
// the modes we do use for lights
|
|
|
|
#define RGBLIGHT_EFFECT_BREATHING
|