aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--keyboards/planck/keymaps/jcorrado/keymap.c115
-rw-r--r--keyboards/planck/keymaps/jcorrado/readme.md9
2 files changed, 124 insertions, 0 deletions
diff --git a/keyboards/planck/keymaps/jcorrado/keymap.c b/keyboards/planck/keymaps/jcorrado/keymap.c
new file mode 100644
index 000000000..35ca76d51
--- /dev/null
+++ b/keyboards/planck/keymaps/jcorrado/keymap.c
@@ -0,0 +1,115 @@
1/* Copyright 2015-2017 Jack Humbert
2 * Copyright 2018 Jereme Corrado
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#include QMK_KEYBOARD_H
19
20enum {
21 _QWERTY = 0,
22 _NUM,
23 _SYM_L,
24 _SYM_R
25};
26
27#define LMOD_0 LT(_SYM_L, KC_TAB) /* Tab, hold: Sym layer */
28#define LMOD_1 LT(_NUM, KC_ESC) /* Esc, hold: Num layer */
29#define LMOD_2 LSFT_T(KC_CAPS) /* Caps Lock, hold: Left Shift */
30
31#define RMOD_0 LT(_SYM_R, KC_BSPC) /* Backspace, hold: Sym layer */
32#define RMOD_1 LT(_NUM, KC_QUOT) /* Quote, hold: Nu layer */
33#define RMOD_2 RSFT_T(KC_ENT) /* Enter, hold: Right Shift */
34
35const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
36
37/*
38 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
39 * | Tab/ | Q | W | E | R | T | Y | U | I | O | P | BacSp/ |
40 * | Sym | | | | | | | | | | | Sym |
41 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
42 * | Esc/ | A | S | D | F | G | H | J | K | L | : | " |
43 * | Num | | | | | | | | | | ; | '/Num |
44 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
45 * | CapLk/ | Z | X | C | V | B | N | M | < | > | ? | Shift/ |
46 * | Shift | | | | | | | | , | . | / | Enter |
47 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
48 * | Toggle | ~ | {pipe} | Alt | Ctrl | Space | Space | Ctrl | Alt | { | } | |
49 * | Num | ` | \ | | | | | | | [ | ] | |
50 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
51 */
52
53[_QWERTY] = LAYOUT_planck_grid(
54 LMOD_0, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, RMOD_0,
55 LMOD_1, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, RMOD_1,
56 LMOD_2, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, RMOD_2,
57 _______, KC_GRV, KC_BSLS, KC_LALT, KC_LCTL, KC_SPC, KC_SPC, KC_RCTL, KC_RALT, KC_LBRC, KC_RBRC, _______
58),
59
60
61/*
62 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
63 * | = | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - |
64 * | | | | | | | | | | | | |
65 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
66 * | | | | | | | Left | Down | Up | Right | | |
67 * | | | | | | | | | | | | |
68 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
69 * | | | | | | | Home | PgDown | PgUp | End | | |
70 * | | | | | | | | | | | | |
71 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
72 * | | | | | | | | | | | | |
73 * | | | | | | | | | | | | |
74 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
75 */
76
77[_NUM] = LAYOUT_planck_grid(
78 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
79 _______, _______, _______, _______, _______, _______, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, _______, _______,
80 _______, _______, _______, _______, _______, _______, KC_HOME, KC_PGDN, KC_PGUP, KC_END, _______, _______,
81 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
82),
83
84
85/*
86 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
87 * | + | ! | @ | # | $ | % | ^ | & | * | ( | ) | _ |
88 * | | | | | | | | | | | | |
89 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
90 * | | F1 | F2 | F3 | F4 | F5 | F6 | | | | | |
91 * | | | | | | | | | | | | |
92 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
93 * | | F7 | F8 | F9 | F10 | F11 | F12 | | | | | |
94 * | | | | | | | | | | | | |
95 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
96 * | | | | | | | | | | | | |
97 * | | | | | | | | | | | | |
98 * |--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------|
99 */
100
101[_SYM_L] = LAYOUT_planck_grid(
102 _______, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_UNDS,
103 _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, _______, _______, _______, _______, _______,
104 _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, _______, _______, _______,
105 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
106),
107
108[_SYM_R] = LAYOUT_planck_grid(
109 KC_PLUS, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, _______,
110 _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, _______, _______, _______, _______, _______,
111 _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, _______, _______, _______,
112 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
113)
114
115};
diff --git a/keyboards/planck/keymaps/jcorrado/readme.md b/keyboards/planck/keymaps/jcorrado/readme.md
new file mode 100644
index 000000000..3a600dea1
--- /dev/null
+++ b/keyboards/planck/keymaps/jcorrado/readme.md
@@ -0,0 +1,9 @@
1# jcorrado Planck keymap
2
3A keymap for the Planck modeled after the way I remap my Kinesis
4Advantage keyboards.
5
6The layout is designed to minimize awkward contortions: all modifier and
7layer-activation combinations can be performed with either hand's thumb
8and pinky. This leaves the other hand free to complete commands
9comfortably.