summaryrefslogtreecommitdiffstats
path: root/keyboards/lets_split/keymaps/bbaserdem_right/keymap.c
diff options
context:
space:
mode:
authorBatuhan Baserdem <bbaserdem@users.noreply.github.com>2018-06-01 03:55:45 +0200
committerDrashna Jaelre <drashna@live.com>2018-06-01 03:55:45 +0200
commit8eaf23ae8146766615cc1cec3fc8e04111e8ef49 (patch)
treed33b9b4609b5df899c243a1f9525eed1c049098f /keyboards/lets_split/keymaps/bbaserdem_right/keymap.c
parentabce980b8bbc6d1bae16513a50662a549b196c1b (diff)
downloadqmk_firmware-8eaf23ae8146766615cc1cec3fc8e04111e8ef49.tar.gz
qmk_firmware-8eaf23ae8146766615cc1cec3fc8e04111e8ef49.tar.xz
User space fixed (#3095)
* Put in my keymaps * Fixed all but weird lets split issue * Organized and tried to trobleshoot lets split * Organized and tried to trobleshoot lets split * Added bbaserdem keymaps * Added bbaserdem keymaps * Fixed stuff * FIxed a filename error
Diffstat (limited to 'keyboards/lets_split/keymaps/bbaserdem_right/keymap.c')
-rwxr-xr-xkeyboards/lets_split/keymaps/bbaserdem_right/keymap.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/keyboards/lets_split/keymaps/bbaserdem_right/keymap.c b/keyboards/lets_split/keymaps/bbaserdem_right/keymap.c
new file mode 100755
index 000000000..c7a81ecb5
--- /dev/null
+++ b/keyboards/lets_split/keymaps/bbaserdem_right/keymap.c
@@ -0,0 +1,35 @@
+/*
+ * Let's Split - Dvorak turkish
+ * Keymap by @bbaserdem
+ * Dvorak layout with multiple features
+ * Most of the code is in the "user" directory.
+ * Check qmk_firmware/users/bbaserdem for the main part of the code
+ */
+
+#include "lets_split.h"
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+
+
+/* Navigation All Supered) Numpad
+ * ,-----------------------. ,-----------------------.
+ * | F4| ` | Q |Alt| L | > | | ) | - | + | = |Ent|Bkp|
+ * |---+---+---+---+---+---| |---+---+---+---+---+---|
+ * | F3| M |Ent|Ctl| K | ^ | | ( | * | 9 | 6 | 3 | . |
+ * |---+---+---+---+---+---| |---+---+---+---+---+---|
+ * | F2| T |Spc|Shf| J | v | | % | / | 8 | 5 | 2 | , |
+ * |---+---+---+---+---+---| |---+---+---+---+---+---|
+ * | F1| F | P |Tab| H | < | |Nlc|Tab| 7 | 4 | 1 | 0 |
+ * `-----------------------' `-----------------------'
+ */
+ // Main Dvorak layer
+ [0] = KEYMAP(
+ LGUI(KC_F4), LGUI(KC_GRV), LGUI(KC_Q), LGUI(KC_LALT), LGUI(KC_L), LGUI(KC_RGHT),
+ KC_RPRN, KC_PMNS, KC_PPLS, KC_PEQL, KC_PENT, KC_BSPC,
+ LGUI(KC_F3), LGUI(KC_M), LGUI(KC_ENT), LGUI(KC_LCTL), LGUI(KC_K), LGUI(KC_UP),
+ KC_LPRN, KC_PAST, KC_P9, KC_P6, KC_P3, KC_PDOT,
+ LGUI(KC_F2), LGUI(KC_T), LGUI(KC_SPC), LGUI(KC_LSFT), LGUI(KC_J), LGUI(KC_DOWN),
+ KC_PERC, KC_PSLS, KC_P8, KC_P5, KC_P2, KC_PCMM,
+ LGUI(KC_F1), LGUI(KC_F), LGUI(KC_P), LGUI(KC_TAB), LGUI(KC_H), LGUI(KC_LEFT),
+ KC_NLCK, KC_TAB, KC_P7, KC_P4, KC_P1, KC_P0 )
+};