diff options
| author | tslil clingman <> | 2020-08-17 11:56:07 -0400 |
|---|---|---|
| committer | tslil clingman <> | 2020-08-17 15:19:27 -0400 |
| commit | d06e6d1332f19d381d8bf37105f18082019b99e4 (patch) | |
| tree | 0d29a203af323edba89153220a50abae0a273bcd /4x5/keymaps/colemak_mod_dh | |
Init
Diffstat (limited to '4x5/keymaps/colemak_mod_dh')
| -rw-r--r-- | 4x5/keymaps/colemak_mod_dh/config.h | 32 | ||||
| -rw-r--r-- | 4x5/keymaps/colemak_mod_dh/keymap.c | 127 |
2 files changed, 159 insertions, 0 deletions
diff --git a/4x5/keymaps/colemak_mod_dh/config.h b/4x5/keymaps/colemak_mod_dh/config.h new file mode 100644 index 0000000..6b0ddbf --- /dev/null +++ b/4x5/keymaps/colemak_mod_dh/config.h @@ -0,0 +1,32 @@ +/* +This is the c configuration file for the keymap + +Copyright 2012 Jun Wako <wakojun@gmail.com> +Copyright 2015 Jack Humbert + +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/>. +*/ + +#pragma once + +/* Use I2C or Serial, not both */ + +#define USE_SERIAL +// #define USE_I2C + +/* Select hand configuration */ + +// #define MASTER_LEFT +// #define MASTER_RIGHT +#define EE_HANDS diff --git a/4x5/keymaps/colemak_mod_dh/keymap.c b/4x5/keymaps/colemak_mod_dh/keymap.c new file mode 100644 index 0000000..4531a21 --- /dev/null +++ b/4x5/keymaps/colemak_mod_dh/keymap.c @@ -0,0 +1,127 @@ +#include QMK_KEYBOARD_H + + +#define _BASE 0 +#define _RAISE 1 +#define _LOWER 2 + +// Fillers to make layering more clear + +#define ____ KC_TRNS + +#define SFT_ESC SFT_T(KC_ESC) +#define CTL_BSPC CTL_T(KC_BSPC) +#define SFT_ENT SFT_T(KC_ENT) +#define ALT_SPC ALT_T(KC_SPC) +#define LGUI_TAB LGUI_T(KC_TAB) + +#define KC_ML KC_MS_LEFT +#define KC_MR KC_MS_RIGHT +#define KC_MU KC_MS_UP +#define KC_MD KC_MS_DOWN +#define KC_MB1 KC_MS_BTN1 +#define KC_MB2 KC_MS_BTN2 + +#define RAISE MO(_RAISE) +#define LOWER MO(_LOWER) + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + +/* Raise + * ,----------------------------------, ,----------------------------------, + * | | | up | | | | VOL+ | | mup | | PgUp | + * |------+------+------+------+------| |-------------+------+------+------| + * |S(INS)| left | down | right| | | MUTE |mleft |mdown |mright| PgDn | + * |------+------+------+------+------| |------|------+------+------+------| + * | | | | | | | VOL- | ] | | | | | + * |------+------+------+-------------, ,-------------+------+------+------, + * | | RESET| | mbtn |mbtn2 | + * '------+------'-------------' '-------------'------+------' + * | | | | | | + * | | | | | | + * | | | | | | + * '------+------' '------+------' + * '------+------' '------+------' + * | | | | | | + * '------+------' '------+------' + * | | | | | | + * '------+------' '------+------' + */ + +[_RAISE] = LAYOUT( \ + ____, ____, KC_UP, ____, ____, KC_VOLU, ____, KC_MU, ____, KC_PGUP, \ + S(KC_INSERT), KC_LEFT, KC_DOWN, KC_RIGHT, ____, KC_MUTE, KC_ML, KC_MD, KC_MR, KC_PGDOWN, \ + ____, ____, ____, ____, ____, KC_VOLD, KC_RBRC, KC_PIPE, ____, ____, \ + ____, RESET, KC_MB1, KC_MB2, \ + ____, ____, ____, ____, \ + ____, ____, ____, ____, \ + ____, ____, ____, ____ \ +), + +/* Base + * ,----------------------------------, ,----------------------------------, + * | q | w | f | p | b | | j | l | u | y | ; | + * |------+------+------+------+------| |-------------+------+------+------| + * | a | r | s | t | g | | k | n | e | i | o | + * |------+------+------+------+------| |------|------+------+------+------| + * | z | x | c | d | v | | m | h | , | . | ' | + * |------+------+------+-------------, ,-------------+------+------+------, + * | [ | / | | \ | - | + * '------+------'-------------' '-------------'------+------' + * | ESC | BKSP | | SPC | RET | + * | + | + | | + | + | + * | SHIFT| CTRL | | ALT | SHIFT| + * '------+------' '------+------' + * '------+------' '------+------' + * |LG/Tab| Raise| | Lower|LG/Tab| + * '------+------' '------+------' + * | HOME | ~ | | DEL | END | + * '------+------' '------+------' + */ + +[_BASE] = LAYOUT( \ + KC_Q, KC_W, KC_F, KC_P, KC_B, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, \ + KC_A, KC_R, KC_S, KC_T, KC_G, KC_K, KC_N, KC_E, KC_I, KC_O, \ + KC_Z, KC_X, KC_C, KC_D, KC_V, KC_M, KC_H, KC_COMM, KC_DOT, KC_QUOT, \ + KC_LBRC, KC_SLSH, KC_BSLS, KC_MINS, \ + SFT_ESC, CTL_BSPC, ALT_SPC, SFT_ENT, \ + LGUI_TAB,RAISE, LOWER, LGUI_TAB, \ + KC_HOME, KC_GRV, KC_DEL, KC_END +), + +/* Lower + * ,----------------------------------, ,----------------------------------, + * | F1 | F2 | F3 | F4 | F5 | | F6 | F7 | F8 | F9 | F10 | + * |------+------+------+------+------| |-------------+------+------+------| + * | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | + * |------+------+------+------+------| |------|------+------+------+------| + * | ! | @ | # | $ | % | | ^ | & | * | ( | ) | + * |------+------+------+-------------, ,-------------+------+------+------, + * | = | - | | , | . | + * '------+------'-------------' '-------------'------+------' + * | | | | | | + * | | | | | | + * | | | | | | + * '------+------' '------+------' + * '------+------' '------+------' + * | | | | | | + * '------+------' '------+------' + * | | F11 | | F12 | | + * '------+------' '------+------' + */ + +[_LOWER] = LAYOUT( \ + KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, \ + KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, \ + KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, \ + KC_EQL, KC_MINS, KC_COMM, KC_DOT, \ + ____, ____, ____, ____, \ + ____, ____, ____, ____, \ + ____, KC_F11, KC_F12, ____ \ +) +}; + +void persistent_default_layer_set(uint16_t default_layer) { + eeconfig_update_default_layer(default_layer); + default_layer_set(default_layer); +} |
