aboutsummaryrefslogtreecommitdiff
path: root/keyboards/bastardkb/charybdis/3x5/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/bastardkb/charybdis/3x5/keymaps/default/keymap.c')
-rw-r--r--keyboards/bastardkb/charybdis/3x5/keymaps/default/keymap.c70
1 files changed, 70 insertions, 0 deletions
diff --git a/keyboards/bastardkb/charybdis/3x5/keymaps/default/keymap.c b/keyboards/bastardkb/charybdis/3x5/keymaps/default/keymap.c
new file mode 100644
index 000000000..18fe86052
--- /dev/null
+++ b/keyboards/bastardkb/charybdis/3x5/keymaps/default/keymap.c
@@ -0,0 +1,70 @@
1/**
2 * Copyright 2021 Charly Delay <charly@codesink.dev> (@0xcharly)
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#include QMK_KEYBOARD_H
18
19enum charybdis_keymap_layers {
20 LAYER_BASE = 0,
21 LAYER_LOWER,
22 LAYER_RAISE,
23};
24
25#define LOWER MO(LAYER_LOWER)
26#define RAISE MO(LAYER_RAISE)
27
28#define CTL_BSP CTL_T(KC_BSPC)
29#define SFT_SPC SFT_T(KC_SPC)
30#define GUI_ENT GUI_T(KC_ENT)
31
32// clang-format off
33const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
34 [LAYER_BASE] = LAYOUT_charybdis_3x5(
35 // ╭─────────────────────────────────────────────╮ ╭─────────────────────────────────────────────╮
36 KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P,
37 // ├─────────────────────────────────────────────┤ ├─────────────────────────────────────────────┤
38 KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN,
39 // ├─────────────────────────────────────────────┤ ├─────────────────────────────────────────────┤
40 KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH,
41 // ╰─────────────────────────────────────────────┤ ├─────────────────────────────────────────────╯
42 CTL_BSP, SFT_SPC, LOWER, RAISE, GUI_ENT
43 // ╰───────────────────────────╯ ╰──────────────────╯
44 ),
45
46 [LAYER_LOWER] = LAYOUT_charybdis_3x5(
47 // ╭─────────────────────────────────────────────╮ ╭─────────────────────────────────────────────╮
48 RGB_TOG, KC_MNXT, KC_MPLY, KC_MPRV, XXXXXXX, KC_LBRC, KC_7, KC_8, KC_9, KC_RBRC,
49 // ├─────────────────────────────────────────────┤ ├─────────────────────────────────────────────┤
50 KC_LGUI, KC_LALT, KC_LCTL, KC_LSFT, XXXXXXX, KC_PPLS, KC_4, KC_5, KC_6, KC_PMNS,
51 // ├─────────────────────────────────────────────┤ ├─────────────────────────────────────────────┤
52 XXXXXXX, XXXXXXX, XXXXXXX, EEP_RST, RESET, KC_PAST, KC_1, KC_2, KC_3, KC_PSLS,
53 // ╰─────────────────────────────────────────────┤ ├─────────────────────────────────────────────╯
54 XXXXXXX, XXXXXXX, _______, XXXXXXX, _______
55 // ╰───────────────────────────╯ ╰──────────────────╯
56 ),
57
58 [LAYER_RAISE] = LAYOUT_charybdis_3x5(
59 // ╭─────────────────────────────────────────────╮ ╭─────────────────────────────────────────────╮
60 XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_VOLU, KC_MUTE, KC_VOLD, XXXXXXX,
61 // ├─────────────────────────────────────────────┤ ├─────────────────────────────────────────────┤
62 KC_LEFT, KC_UP, KC_DOWN, KC_RGHT, XXXXXXX, XXXXXXX, KC_RSFT, KC_RCTL, KC_RALT, KC_RGUI,
63 // ├─────────────────────────────────────────────┤ ├─────────────────────────────────────────────┤
64 KC_HOME, KC_PGUP, KC_PGDN, KC_END, XXXXXXX, RESET, EEP_RST, XXXXXXX, XXXXXXX, XXXXXXX,
65 // ╰─────────────────────────────────────────────┤ ├─────────────────────────────────────────────╯
66 _______, _______, XXXXXXX, _______, XXXXXXX
67 // ╰───────────────────────────╯ ╰──────────────────╯
68 ),
69};
70// clang-format on