diff --git a/keyboards/mexsistor/ludmila/config.h b/keyboards/mexsistor/ludmila/config.h
index 2a343b1629f..fa02933d425 100644
--- a/keyboards/mexsistor/ludmila/config.h
+++ b/keyboards/mexsistor/ludmila/config.h
@@ -77,7 +77,7 @@ along with this program. If not, see .
// #endif
/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
-#define DEBOUNCE 20
+#define DEBOUNCE 0
/* ENCODER THINGS */
// #define ENCODER_DIRECTION_FLIP
@@ -85,10 +85,6 @@ along with this program. If not, see .
{ F6 }
#define ENCODERS_PAD_B \
{ F5 }
-
-/* Tap Dance timing */
-#define TAPPING_TERM 200
-
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
#define LOCKING_SUPPORT_ENABLE
/* Locking resynchronize hack */
diff --git a/keyboards/mexsistor/ludmila/keymaps/default/keymap.c b/keyboards/mexsistor/ludmila/keymaps/default/keymap.c
index 4134bc737f8..c93cba86756 100644
--- a/keyboards/mexsistor/ludmila/keymaps/default/keymap.c
+++ b/keyboards/mexsistor/ludmila/keymaps/default/keymap.c
@@ -41,16 +41,3 @@ void encoder_update_user(uint8_t index, bool clockwise) {
}
}
-bool process_record_user(uint16_t keycode, keyrecord_t *record) {
- switch (keycode) {
- // Example of "pressing" CONTROL+SHIFT+V instead of "A" on keyboard
- // More info: https://docs.qmk.fm/#/feature_macros
- // case KC_A:
- // if (record->event.pressed) {
- // SEND_STRING(SS_LCTL(SS_LSFT("v")));
- // } else {
- // }
- // break;
- }
- return true;
-};