aboutsummaryrefslogtreecommitdiff
path: root/keyboards/centromere/keymaps/mini_bom/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/centromere/keymaps/mini_bom/keymap.c')
-rw-r--r--keyboards/centromere/keymaps/mini_bom/keymap.c153
1 files changed, 153 insertions, 0 deletions
diff --git a/keyboards/centromere/keymaps/mini_bom/keymap.c b/keyboards/centromere/keymaps/mini_bom/keymap.c
new file mode 100644
index 000000000..75b2ea08f
--- /dev/null
+++ b/keyboards/centromere/keymaps/mini_bom/keymap.c
@@ -0,0 +1,153 @@
1/* Copyright 2020 keyboard-magpie
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
20// Each layer gets a name for readability, which is then used in the keymap matrix below.
21// The underscores don't mean anything - you can have a layer called STUFF or any other name.
22// Layer names don't all need to be of the same length, obviously, and you can also skip them
23// entirely and just use numbers.
24
25
26enum centromere_layers
27{
28 _BASE,
29 _SYMB,
30 _NUMB,
31};
32
33 enum combo_events {
34 COMBO_BSPC,
35 COMBO_TAB,
36 COMBO_ESC,
37 COMBO_DEL,
38 COMBO_UNDS,
39 COMBO_BKSL,
40 COMBO_LESS,
41 COMBO_MORE,
42 COMBO_QUOT,
43 COMBO_DASH,
44 };
45
46
47 /* Combomap
48 *
49 * ,-----------------------------. ,--------------------------------.
50 * | | ESC | | | | | | BSLH |
51 * |-----+-----+-----+-----+------| |--------------------------------|
52 * | | BSPC | | | LES | GRT | |
53 * |-----+-----+-----+--RMB+-LMB--+ |--------------------------------|
54 * | | MINS | | | | QUO | UNDR | | |
55 * `------+-----+-----+------+----' `--------------------------------'
56 * .-------------------------. .-----------------.
57 * | | | | | | | |
58 * '-------------------------' '-----------------'
59 */
60
61const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
62
63/* Keymap 0: Basic layer
64 *
65 * ,-----------------------------. ,--------------------------------.
66 * | Q | W | E | R | T | | Y | U | I | O | P |
67 * |-----+-----+-----+-----+------| |--------------------------------|
68 * |CTRL/A| S | D | F | G | | H | J | K | L | CTRL/; |
69 * |-----+-----+-----+-----+------+ |--------------------------------|
70 * |SHFT/Z| X | C | V | B | | N | M | < | > | SHFT/? |
71 * `------+-----+-----+------+----' `--------------------------------'
72 * .-------------------------. .-----------------.
73 * |ESC/META|ENT/ALT|SPC(SYM)| |SPC(NUM)|BSPC|TAB|
74 * '-------------------------' '-----------------'
75 */
76
77[_BASE] = LAYOUT(
78 KC_NO, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_NO,
79 KC_NO, MT(MOD_LCTL, KC_A), KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, MT(MOD_LCTL, KC_SCLN), KC_NO,
80 KC_NO, MT(MOD_RSFT, KC_Z), KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, MT(MOD_RSFT, KC_SLSH), KC_NO,
81 MT(MOD_LGUI, KC_ESC), MT(MOD_LALT, KC_ENT), LT(_SYMB, KC_SPC), LT(_NUMB, KC_SPC), KC_LSFT, MT(MOD_RSFT, KC_TAB)
82 ),
83
84 /* Keymap 1: Symbols layer
85 * ,-----------------------------. ,--------------------------------.
86 * | ! | @ | { | } | | ` | ~ | | | \ |
87 * |-----+-----+-----+-----+------| |--------------------------------|
88 * | # | $ | ( | ) | LMB | | + | - | / | * | ' |
89 * |-----+-----+-----+-----+------+ |--------------------------------|
90 * | % | ^ | [ | ] | RMB | | & | = | , | . | - |
91 * `------+-----+-----+------+----' `--------------------------------'
92 * .-----------------. .------------------.
93 * |MMB | ; | = | | = | ; | DEL |
94 * '-----------------' '------------------'
95 */
96[_SYMB] = LAYOUT(
97 KC_NO, KC_EXLM, KC_AT, KC_LCBR, KC_RCBR, KC_PIPE, KC_GRV, KC_TILD, KC_TRNS, KC_TRNS, KC_BSLS, KC_NO,
98 KC_NO, KC_HASH, KC_DLR, KC_LPRN, KC_RPRN, KC_BTN2, KC_PLUS, KC_MINS, KC_SLSH, KC_ASTR, KC_QUOT, KC_NO,
99 KC_NO, KC_PERC, KC_CIRC, KC_LBRC, KC_RBRC, KC_BTN1, KC_AMPR, KC_EQL, KC_COMM, KC_DOT, KC_MINS, KC_NO,
100 CMB_TOG, KC_SCLN, KC_EQL, KC_EQL, KC_SCLN, KC_DEL
101 ),
102
103 /* Keymap 2: Pad/Function layer
104 * ,-----------------------------. ,-------------------------------.
105 * | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 |
106 * |-----+-----+-----+-----+------| |-------------------------------|
107 * | F1 | F2 | F3 | F4 | F5 | | LFT | DWN | UP | RGT | VOLUP |
108 * |-----+-----+-----+-----+------+ |-------------------------------|
109 * | F6 | F7 | F8 | F9 | F10 | |MLFT | MDWN| MUP | MRGT| VOLDN |
110 * `------+-----+-----+------+----' `-------------------------------'
111 * .-----------------. .-----------------.
112 * | F11 | F12| | | | PLY | SKP |
113 * '-----------------' '-----------------'
114 */
115[_NUMB] = LAYOUT(
116 KC_NO, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_NO,
117 KC_NO, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, KC_VOLU, KC_NO,
118 KC_NO, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_MS_L, KC_MS_D, KC_MS_U, KC_MS_R, KC_VOLD, KC_NO,
119 KC_F11, KC_F12, KC_TRNS, KC_TRNS, KC_MPLY, KC_MNXT
120 ),
121
122};
123
124
125// layer_state_t layer_state_set_user(layer_state_t state) {
126// return update_tri_layer_state(state, _LOWER, _RAISE, _ADJUST);
127// }
128
129#ifdef COMBO_ENABLE
130const uint16_t PROGMEM combo_bspc[] = {KC_S, KC_D, COMBO_END};
131const uint16_t PROGMEM combo_tab[] = {KC_D, KC_F, COMBO_END};
132const uint16_t PROGMEM combo_esc[] = {KC_W, KC_E, COMBO_END};
133const uint16_t PROGMEM combo_del[] = {KC_A, KC_S, COMBO_END};
134const uint16_t PROGMEM combo_unds[] = {KC_M, KC_COMM, COMBO_END};
135const uint16_t PROGMEM combo_bksl[] = {KC_O, KC_P, COMBO_END};
136const uint16_t PROGMEM combo_less[] = {KC_H, KC_J, COMBO_END};
137const uint16_t PROGMEM combo_more[] = {KC_K, KC_L, COMBO_END};
138const uint16_t PROGMEM combo_quot[] = {KC_N, KC_M, COMBO_END};
139const uint16_t PROGMEM combo_dash[] = {KC_X, KC_C, COMBO_END};
140
141combo_t key_combos[COMBO_COUNT] = {
142 [COMBO_BSPC] = COMBO(combo_bspc,KC_BSPC),
143 [COMBO_TAB] = COMBO(combo_tab,KC_TAB),
144 [COMBO_ESC] = COMBO(combo_esc,KC_ESC),
145 [COMBO_DEL] = COMBO(combo_del,KC_DEL),
146 [COMBO_UNDS] = COMBO(combo_unds, KC_UNDS),
147 [COMBO_BKSL] = COMBO(combo_bksl,KC_BSLS),
148 [COMBO_LESS] = COMBO(combo_less,KC_LT),
149 [COMBO_MORE] = COMBO(combo_more,KC_GT),
150 [COMBO_QUOT] = COMBO(combo_quot, KC_QUOT),
151 [COMBO_DASH] = COMBO(combo_dash, KC_MINS),
152};
153#endif