aboutsummaryrefslogtreecommitdiff
path: root/keyboards/shared
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/shared')
-rw-r--r--keyboards/shared/config.h6
-rw-r--r--keyboards/shared/leader.c38
-rw-r--r--keyboards/shared/rules.mk12
3 files changed, 0 insertions, 56 deletions
diff --git a/keyboards/shared/config.h b/keyboards/shared/config.h
deleted file mode 100644
index 140922d..0000000
--- a/keyboards/shared/config.h
+++ /dev/null
@@ -1,6 +0,0 @@
-#define CTL_ESC LCTL_T(KC_ESC)
-#define TAPPING_TOGGLE 2
-
-#define LEADER_NO_TIMEOUT
-#define LEADER_TIMEOUT 250
-#define LEADER_PER_KEY_TIMING
diff --git a/keyboards/shared/leader.c b/keyboards/shared/leader.c
deleted file mode 100644
index fd8ae82..0000000
--- a/keyboards/shared/leader.c
+++ /dev/null
@@ -1,38 +0,0 @@
-LEADER_EXTERNS();
-
-void matrix_scan_user(void) {
- LEADER_DICTIONARY() {
- leading = false;
- leader_end();
-
- // G
- SEQ_ONE_KEY(LSFT(KC_G)) {
- tap_code(KC_END);
- }
-
- // G
- SEQ_ONE_KEY(RSFT(KC_G)) {
- tap_code(KC_END);
- }
-
- // gg
- SEQ_TWO_KEYS(KC_G, KC_G) {
- tap_code(KC_HOME);
- }
-
- // d
- SEQ_ONE_KEY(KC_D) {
- tap_code(KC_PGDN);
- }
-
- // u
- SEQ_ONE_KEY(KC_U) {
- tap_code(KC_PGUP);
- }
-
- // reset
- SEQ_FIVE_KEYS(KC_R, KC_E, KC_S, KC_E, KC_T) {
- reset_keyboard();
- }
- }
-}
diff --git a/keyboards/shared/rules.mk b/keyboards/shared/rules.mk
deleted file mode 100644
index 1636b99..0000000
--- a/keyboards/shared/rules.mk
+++ /dev/null
@@ -1,12 +0,0 @@
-# SRC += leader.c
-
-CONSOLE_ENABLE = no
-COMMAND_ENABLE = yes
-EXTRAKEY_ENABLE = yes
-BACKLIGHT_ENABLE = no
-RGBLIGHT_ENABLE = no
-SLEEP_LED_ENABLE = no
-NKRO_ENABLE = no
-BLUETOOTH_ENABLE = no
-AUDIO_ENABLE = no
-LEADER_ENABLE = yes