2023-09-02 13:04:16 +02:00
|
|
|
/*
|
|
|
|
Copyright 2019 @foostan
|
|
|
|
Copyright 2020 Drashna Jaelre <@drashna>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
|
|
todo
|
|
|
|
ctrl,shift, alt,
|
|
|
|
test better enter keys
|
|
|
|
|
2023-09-02 14:00:18 +02:00
|
|
|
https://docs.qmk.fm/#/keycodes
|
2023-09-02 13:04:16 +02:00
|
|
|
https://docusaurus.qmk.fm/feature_layers/
|
|
|
|
use LT(layer, kc) - momentarily activates layer when held, and sends kc when tapped.
|
2023-09-02 21:07:21 +02:00
|
|
|
|
|
|
|
this seems like a great example of composed layers and support for different environments
|
|
|
|
https://github.com/0x64746b/qmk_firmware/blob/chocofi/keyboards/chocofi/keymaps/dtk35/keymap.c
|
|
|
|
|
|
|
|
TODO
|
|
|
|
rshift: tap => toggle alpha/nav layer,
|
|
|
|
use the 'free' enter hold for rctrl and the hold on esc for lalt
|
2023-09-02 13:04:16 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include QMK_KEYBOARD_H
|
|
|
|
|
2023-09-02 21:07:21 +02:00
|
|
|
// Layer declarations
|
|
|
|
enum {
|
|
|
|
COLEMAK = 0,
|
|
|
|
NAV_FN,
|
|
|
|
NUM_SYM,
|
|
|
|
|
|
|
|
NUM_LAYERS
|
2023-09-02 13:04:16 +02:00
|
|
|
};
|
2023-09-02 21:07:21 +02:00
|
|
|
|
|
|
|
|
|
|
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|
|
|
[COLEMAK] = LAYOUT_split_3x5_3(
|
|
|
|
KC_Q, KC_W, KC_F, KC_P, KC_B, KC_J, KC_L, KC_U, KC_Y, KC_BSPC,
|
|
|
|
KC_A, KC_R, KC_S, KC_T, KC_G, KC_M, KC_N, KC_E, KC_I, KC_O,
|
|
|
|
KC_Z, KC_X, KC_C, KC_D, KC_V, KC_K, KC_H, KC_COMM, KC_DOT, KC_SLSH,
|
|
|
|
LSFT_T(KC_DEL), LT(NAV_FN, KC_SPC), LGUI_T(KC_TAB), CTL_T(KC_ESC), LT(NUM_SYM, KC_ENT), TG(NAV_FN)
|
|
|
|
),
|
|
|
|
|
|
|
|
[NAV_FN] = LAYOUT_split_3x5_3(
|
|
|
|
KC_1, KC_F7, KC_F8, KC_F9, KC_F10, KC_PGUP, KC_HOME, KC_8, KC_END, KC_BSPC,
|
|
|
|
XXXXXXX, KC_F4, KC_F5, KC_F6, KC_F11, KC_LEFT, KC_DOWN, KC_UP, KC_RIGHT, KC_DEL,
|
|
|
|
XXXXXXX, KC_F1, KC_F2, KC_F3, KC_F12, KC_PGDN, KC_PGDN, KC_PGUP, XXXXXXX, XXXXXXX,
|
|
|
|
_______, _______, _______, _______, _______, _______
|
|
|
|
),
|
|
|
|
|
|
|
|
[NUM_SYM] = LAYOUT_split_3x5_3(
|
|
|
|
KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_7, KC_8, KC_9, KC_PLUS,
|
|
|
|
KC_LT, KC_LCBR, KC_LPRN, KC_LBRC, XXXXXXX, KC_MINS, KC_4, KC_5, KC_6, KC_MINUS,
|
|
|
|
KC_GT, KC_RCBR, KC_RPRN, KC_RBRC, XXXXXXX, KC_UNDS, KC_1, KC_2, KC_3, KC_PIPE,
|
|
|
|
_______, _______, _______, _______, _______, _______
|
|
|
|
)
|
|
|
|
|
|
|
|
};
|