]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/atreus/keymaps/replicaJunction/keymap.c
Merge pull request #989 from ishigoya/master
[qmk_firmware.git] / keyboards / atreus / keymaps / replicaJunction / keymap.c
1 /*
2  * Keyboard: Atreus
3  * Keymap:   replicaJunction
4  * Version:  0.3
5  *
6  * This keymap is designed to complement my Ergodox keyboard layout, found in keyboards/ergodox_ez.
7  * The Atreus keyboard is a 40% board whose design was heavily influenced by the Ergodox. I now
8  * have both keyboards, so I've designed these layouts in an effort to make switching between the
9  * two as easy as possible.
10  *
11  * Clearly, the Atreus is the limiting factor in this equation, so I've taken heavy advantage of
12  * function and dual-role keys.
13  *
14  * The default key layout in this keymap is Colemak-ModDH. Information on that layout can be found
15  * here: https://colemakmods.github.io/mod-dh/
16  */
17
18 #include "atreus.h"
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 // Note that whatever is set as layer 0 will be the default layer of the keyboard.
26
27 #define _CO 0 // Colemak
28 #define _QW 1 // QWERTY
29 #define _GA 2 // Gaming
30 #define _EX 3 // Extend
31 #define _NU 4 // Numpad
32 #define _FN 5 // Function
33
34 // Some quick aliases, just to make it look pretty
35 #define _______ KC_TRNS
36 #define KCX_CA  LCTL(KC_LALT)
37 #define KCX_CS  LCTL(KC_LSFT)
38 #define KCX_CSA LCTL(LSFT(KC_LALT))
39 #define KCX_LST LSFT(KC_TAB)
40 #define KX_COPY LCTL(KC_C)
41 #define KX_CUT  LCTL(KC_X)
42 #define KX_PAST LCTL(KC_V)
43 #define KX_UNDO LCTL(KC_Z)
44
45 ; // This doesn't do anything. It's just for VSCode because its syntax highlighting is weird for the above #define statements.
46
47 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
48 [_CO] = KEYMAP(
49   KC_Q,        KC_W,    KC_F,    KC_P,    KC_B,                                   KC_J,            KC_L,    KC_U,    KC_Y,    KC_SCLN,
50   KC_A,        KC_R,    KC_S,    KC_T,    KC_G,                                   KC_M,            KC_N,    KC_E,    KC_I,    KC_O,
51   SFT_T(KC_Z), KC_X,    KC_C,    KC_D,    KC_V,                                   KC_K,            KC_H,    KC_COMM, KC_DOT,  SFT_T(KC_SLSH),
52   KC_ESC,      KC_LGUI, KC_TAB,  KC_LALT, KC_BSPC, CTL_T(KC_DEL), ALT_T(KC_ENT),  LT(_NU, KC_SPC), MO(_EX), KC_MINS, KC_QUOT, KC_EQL
53 ),
54
55 [_QW] = KEYMAP( /* Qwerty */
56   KC_Q,        KC_W,    KC_E,    KC_R,    KC_T,                                  KC_Y,            KC_U,    KC_I,    KC_O,    KC_P,
57   KC_A,        KC_S,    KC_D,    KC_F,    KC_G,                                  KC_H,            KC_J,    KC_K,    KC_L,    KC_SCLN,
58   SFT_T(KC_Z), KC_X,    KC_C,    KC_V,    KC_B,                                  KC_N,            KC_M,    KC_COMM, KC_DOT,  SFT_T(KC_SLSH),
59   KC_ESC,      KC_LGUI, KC_TAB,  KC_LALT, KC_BSPC, CTL_T(KC_DEL), ALT_T(KC_ENT), LT(_NU, KC_SPC), MO(_EX), KC_MINS, KC_QUOT, KC_EQL
60 ),
61
62 [_EX] = KEYMAP( /* Extend */
63   KC_CAPS, _______, _______, _______, _______,                   KC_PGUP, KC_HOME, KC_UP,   KC_END,  KC_DEL,
64   _______, KC_LGUI, KC_LALT, KC_LCTL, _______,                   KC_PGDN, KC_LEFT, KC_DOWN, KC_RGHT, KC_BSPC,
65   _______, KX_CUT,  KX_COPY, _______, KX_PAST,                   _______, KC_TAB,  KCX_LST, _______, KC_INSERT,
66   _______, _______, _______, _______, _______, _______, _______, KC_SPC,  _______, _______, _______, KC_PSCR
67 ),
68
69 [_NU] = KEYMAP( /* Numbers and symbols */
70   KC_EXLM, KC_AT,   KC_LCBR, KC_RCBR, KC_AMPR,                    KC_SLSH, KC_7,    KC_8,   KC_9,   KC_ASTR,
71   KC_HASH, KC_DLR,  KC_LPRN, KC_RPRN, KC_TILD,                    KC_PIPE, KC_4,    KC_5,   KC_6,   KC_MINS,
72   KC_PERC, KC_CIRC, KC_LBRC, KC_RBRC, KC_GRV,                     KC_BSLS, KC_1,    KC_2,   KC_3,   KC_PLUS,
73   _______, TG(_GA), _______, MO(_FN), _______, _______,  _______, _______, KC_0,    KC_DOT, KC_EQL, _______
74 ),
75
76 [_FN] = KEYMAP( /* Functions */
77   KC_DEL,  KC_HOME, KC_UP,   KC_END,  KC_PGUP,                   _______, KC_F7,   KC_F8,   KC_F9,   KC_F10,
78   KC_BSPC, KC_LEFT, KC_DOWN, KC_RGHT, KC_DOWN,                   _______, KC_F4,   KC_F5,   KC_F6,   KC_F11,
79   _______, KC_VOLU, KC_MUTE, KC_VOLD, KC_MPLY,                   _______, KC_F1,   KC_F2,   KC_F3,   KC_F12,
80   _______, _______, _______, _______, KC_MSTP, _______, _______, _______, KC_NO,   DF(_CO), DF(_QW), RESET
81 ),
82
83 [_GA] = KEYMAP( /* Gaming */
84   _______, _______, _______, _______, _______,                   _______, KC_WH_U, KC_MS_U, KC_WH_D, _______,
85   _______, _______, _______, _______, _______,                   _______, KC_MS_L, KC_MS_D, KC_MS_R, _______,
86   KC_Z,    _______, _______, _______, _______,                   KC_BTN3, _______, KC_MS_D, _______, _______,
87   _______, TG(_GA), _______, KC_LSFT, KC_SPC,  KC_BSPC, KC_BTN2, KC_BTN1, _______, _______, _______, _______
88 )};
89
90 const uint16_t PROGMEM fn_actions[] = {
91
92 };
93
94 const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
95 {
96   // MACRODOWN only works in this function
97       switch(id) {
98         case 0:
99           if (record->event.pressed) {
100             register_code(KC_RSFT);
101           } else {
102             unregister_code(KC_RSFT);
103           }
104         break;
105       }
106     return MACRO_NONE;
107 };