aboutsummaryrefslogtreecommitdiff
path: root/keyboards/dozen0/keymaps/via/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/dozen0/keymaps/via/keymap.c')
-rw-r--r--keyboards/dozen0/keymaps/via/keymap.c48
1 files changed, 48 insertions, 0 deletions
diff --git a/keyboards/dozen0/keymaps/via/keymap.c b/keyboards/dozen0/keymaps/via/keymap.c
new file mode 100644
index 000000000..91f15469f
--- /dev/null
+++ b/keyboards/dozen0/keymaps/via/keymap.c
@@ -0,0 +1,48 @@
1/* Copyright 2021 yynmt
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
19const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
20 /* Base
21 * ,-----------------------------------------.
22 * | Cut | Copy |Paste | Up |Delete| Bksp |
23 * | | | | | |Raise |
24 * |------+------+------+------+------+------|
25 * | Ctrl |Shift | Left | Down |Right |Enter |
26 * | | | | | |Lower |
27 * `-----------------------------------------'
28 */
29 [0] = LAYOUT(
30 LCTL(KC_X), LCTL(KC_C), LCTL(KC_V), KC_UP, KC_DEL, LT(2,KC_BSPC),
31 KC_LCTL, KC_LSFT, KC_LEFT, KC_DOWN, KC_RGHT, LT(1,KC_ENT)
32 ),
33 /* Lower */
34 [1] = LAYOUT(
35 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
36 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
37 ),
38 /* Raise */
39 [2] = LAYOUT(
40 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
41 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
42 ),
43 /* Adjust */
44 [3] = LAYOUT(
45 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
46 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
47 ),
48};