diff options
Diffstat (limited to 'users/greatwizard/keymap_helpers.h')
-rw-r--r-- | users/greatwizard/keymap_helpers.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/users/greatwizard/keymap_helpers.h b/users/greatwizard/keymap_helpers.h new file mode 100644 index 000000000..af9f4dfaa --- /dev/null +++ b/users/greatwizard/keymap_helpers.h | |||
@@ -0,0 +1,61 @@ | |||
1 | /* Copyright 2020 Guillaume Gérard | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | #pragma once | ||
17 | |||
18 | #include QMK_KEYBOARD_H | ||
19 | |||
20 | #define _______________QWERTY_LEFT1________________ KC_Q, KC_W, KC_E, KC_R, KC_T | ||
21 | #define _______________QWERTY_LEFT2________________ KC_A, KC_S, KC_D, KC_F, KC_G | ||
22 | #define _______________QWERTY_LEFT3________________ KC_Z, KC_X, KC_C, KC_V, KC_B | ||
23 | |||
24 | #define _______________QWERTY_RIGHT1_______________ KC_Y, KC_U, KC_I, KC_O, KC_P | ||
25 | #define _______________QWERTY_RIGHT2_______________ KC_H, KC_J, KC_K, KC_L, KC_SCLN | ||
26 | #define _______________QWERTY_RIGHT3_______________ KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH | ||
27 | |||
28 | #define _______________WORKMAN_LEFT1_______________ KC_Q, KC_D, KC_R, KC_W, KC_B | ||
29 | #define _______________WORKMAN_LEFT2_______________ KC_A, KC_S, KC_H, KC_T, KC_G | ||
30 | #define _______________WORKMAN_LEFT3_______________ KC_Z, KC_X, KC_M, KC_C, KC_V | ||
31 | |||
32 | #define _______________WORKMAN_RIGHT1______________ KC_J, KC_F, KC_U, KC_P, KC_SCLN | ||
33 | #define _______________WORKMAN_RIGHT2______________ KC_Y, KC_N, KC_E, KC_O, KC_I | ||
34 | #define _______________WORKMAN_RIGHT3______________ KC_K, KC_L, KC_COMM, KC_DOT, KC_SLSH | ||
35 | |||
36 | #define _______________COLEMAK_LEFT1_______________ KC_Q, KC_W, KC_F, KC_P, KC_G | ||
37 | #define _______________COLEMAK_LEFT2_______________ KC_A, KC_R, KC_S, KC_T, KC_D | ||
38 | #define _______________COLEMAK_LEFT3_______________ KC_Z, KC_X, KC_C, KC_V, KC_B | ||
39 | |||
40 | #define _______________COLEMAK_RIGHT1______________ KC_J, KC_L, KC_U, KC_Y, KC_SCLN | ||
41 | #define _______________COLEMAK_RIGHT2______________ KC_H, KC_N, KC_E, KC_I, KC_O | ||
42 | #define _______________COLEMAK_RIGHT3______________ KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH | ||
43 | |||
44 | #define _______________DVORAK_LEFT1________________ KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y | ||
45 | #define _______________DVORAK_LEFT2________________ KC_A, KC_O, KC_E, KC_U, KC_I | ||
46 | #define _______________DVORAK_LEFT3________________ KC_SCLN, KC_Q, KC_J, KC_K, KC_X | ||
47 | |||
48 | #define _______________DVORAK_RIGHT1_______________ KC_F, KC_G, KC_C, KC_R, KC_L | ||
49 | #define _______________DVORAK_RIGHT2_______________ KC_D, KC_H, KC_T, KC_N, KC_S | ||
50 | #define _______________DVORAK_RIGHT3_______________ KC_B, KC_M, KC_W, KC_V, KC_Z | ||
51 | |||
52 | #define _______________NUMBER_LEFT_________________ KC_1, KC_2, KC_3, KC_4, KC_5 | ||
53 | #define _______________NUMBER_RIGHT________________ KC_6, KC_7, KC_8, KC_9, KC_0 | ||
54 | |||
55 | #define _________________GIT_LEFT1_________________ GIT_CPK, GIT_SHW, GIT_RBS, GIT_RST, GIT_TAG | ||
56 | #define _________________GIT_LEFT2_________________ GIT_ADD, GIT_STT, GIT_DIF, GIT_FTC, GIT_GRP | ||
57 | #define _________________GIT_LEFT3_________________ _______, _______, GIT_CMT, GIT_MV, GIT_BRC | ||
58 | |||
59 | #define _________________GIT_RIGHT1________________ _______, GIT_PUL, GIT_INI, GIT_RMT, GIT_PUS | ||
60 | #define _________________GIT_RIGHT2________________ GIT_STS, _______, GIT_CKT, GIT_LOG, _______ | ||
61 | #define _________________GIT_RIGHT3________________ _______, GIT_MRG, _______, _______, _______ | ||