aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--keyboards/keebio/nyquist/keymaps/peott-fr/keymap.c104
1 files changed, 104 insertions, 0 deletions
diff --git a/keyboards/keebio/nyquist/keymaps/peott-fr/keymap.c b/keyboards/keebio/nyquist/keymaps/peott-fr/keymap.c
new file mode 100644
index 000000000..5788e7d21
--- /dev/null
+++ b/keyboards/keebio/nyquist/keymaps/peott-fr/keymap.c
@@ -0,0 +1,104 @@
1/* Copyright 2021 Pierre-Emmanuel Ott
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
17#include QMK_KEYBOARD_H
18
19/* This keymap is based on a) intuitive layout and b) least amount of layers required for the bare minimum amount of keys.
20 * The first layer has most symbols and the usual QWERTY layout, along with all mods. This is similar to what one may make on a Preonic.
21 * Second layer is my left-hand layer: if the right hand is on the mouse, this layer has arrows and other keys on the left-hand. This also has a numpad.
22 * Last layer is for Functions keys and keyboard functions.
23 *
24 * Note that 'Reset' appears twice: on Nyquist both halves need to be flashed, so we need the full Reset shortcut to be available from any given single half.
25 */
26
27enum custom_layers {
28 _QWERTY,
29 _LEFTHAND,
30 _FUNC
31};
32
33#define SPC_LFT LT(_LEFTHAND, KC_SPC)
34#define BSP_FUNC LT(_FUNC, KC_BSPC)
35
36const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
37
38/* Base/Qwerty layer
39 * .----------------------------------------. .-----------------------------------------.
40 * | ~ | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | - |
41 * |-----+------+------+------+------+------| |------+------+------+------+------+------|
42 * | Tab | Q | W | E | R | T | | Y | U | I | O | P | [ |
43 * |-----+------+------+------+------+------| |------+------+------+------+------+------|
44 * | Esc | A | S | D | F | G | | H | J | K | L | ; | " |
45 * |-----+------+------+------+------+------| |------+------+------+------+------+------|
46 * |Lsft(| Z | X | C | V | B | | N | M | , | . | / |Rsft) |
47 * |-----+------+------+------+------+------| |------+------+------+------+------+------|
48 * |LCtrl| LGui | LAlt | Del | Spc/LftHnd | | Bckpc/Func | Left | Down | Up |Right |
49 * '----------------------------------------' '-----------------------------------------'
50 */
51
52 [_QWERTY] = LAYOUT(
53 KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
54 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC,
55 KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
56 KC_LSPO, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSPC,
57 LCTL_T(KC_MPRV), LGUI_T(KC_MPLY), LALT_T(KC_MNXT), KC_DEL, SPC_LFT, SPC_LFT, BSP_FUNC, BSP_FUNC, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
58 ),
59
60/* Left hand layer
61 * .-----------------------------------------. .-----------------------------------------.
62 * | + | | | | | Rst | | NumLk| / | * | - | | \ |
63 * |------+------+------+------+------+------| |------+------+------+------+------+------|
64 * | | Home | [ | ] | Up | PgUp | | 7 | 8 | 9 | + | | ] |
65 * |------+------+------+------+------+------| |------+------+------+------+------+------|
66 * | | End | Left | Down | Right| PgDn | | 4 | 5 | 6 | , | | Enter|
67 * |------+------+------+------+------+------| |------+------+------+------+------+------|
68 * | | Calc | MyPC |PrtScr| Enter|BckSpc| | 1 | 2 | 3 | = | PgUp | Home |
69 * |------+------+------+------+------+------| |------+------+------+------+------+------|
70 * | | Mute | | | | | | 0 | . | Enter| PgDn | End |
71 * '-----------------------------------------' `-----------------------------------------'
72 */
73
74 [_LEFTHAND] = LAYOUT(
75 KC_EQL, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RESET, KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, KC_TRNS, KC_BSLS,
76 KC_TRNS, KC_TRNS, KC_LBRC, KC_UP, KC_RBRC, KC_TRNS, KC_P7, KC_P8, KC_P9, KC_PPLS, KC_TRNS, KC_RBRC,
77 KC_TRNS, KC_TRNS, KC_LEFT, KC_DOWN, KC_RGHT, KC_TRNS, KC_P4, KC_P5, KC_P6, KC_PCMM, KC_TRNS, KC_ENT,
78 KC_TRNS, KC_CALC, KC_MYCM, KC_PSCR, KC_ENT, KC_BSPC, KC_P1, KC_P2, KC_P3, KC_PEQL, KC_PGUP, KC_HOME,
79 KC_TRNS, KC_MUTE, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_P0, KC_P0, KC_PDOT, KC_PENT, KC_PGDN, KC_END
80 ),
81
82/* Func/Numpad layer
83 * .-----------------------------------------. .-----------------------------------------.
84 * | F1 | F2 | F3 | F4 | F5 | F6 | | F7 | F8 | F9 | F10 | F11 | F12 |
85 * |------+------+------+------+------+------| |------+------+------+------+------+------|
86 * | RGBtg| | | | | | | | | | | | |
87 * |------+------+------+------+------+------| |------+------+------+------+------+------|
88 * | | | | | | | | | | | | | |
89 * |------+------+------+------+------+------| |------+------+------+------+------+------|
90 * | | | | | | | | | | | | | |
91 * |------+------+------+------+------+------| |------+------+------+------+------+------|
92 * | | | | | | | | | | | | | Rst |
93 * '-----------------------------------------' `-----------------------------------------'
94*/
95
96
97 [_FUNC] = LAYOUT(
98 KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
99 RGB_TOG, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
100 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
101 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
102 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RESET
103 ),
104}; \ No newline at end of file