diff options
Diffstat (limited to 'keyboards/chimera_ergo/keymaps/default/keymap.c')
-rw-r--r-- | keyboards/chimera_ergo/keymaps/default/keymap.c | 159 |
1 files changed, 159 insertions, 0 deletions
diff --git a/keyboards/chimera_ergo/keymaps/default/keymap.c b/keyboards/chimera_ergo/keymaps/default/keymap.c new file mode 100644 index 000000000..51ab0e92c --- /dev/null +++ b/keyboards/chimera_ergo/keymaps/default/keymap.c | |||
@@ -0,0 +1,159 @@ | |||
1 | // this is the style you want to emulate. | ||
2 | // This is the canonical layout file for the Quantum project. If you want to add another keyboard, | ||
3 | |||
4 | #include QMK_KEYBOARD_H | ||
5 | |||
6 | // Each layer gets a name for readability, which is then used in the keymap matrix below. | ||
7 | // The underscores don't mean anything - you can have a layer called STUFF or any other name. | ||
8 | // Layer names don't all need to be of the same length, obviously, and you can also skip them | ||
9 | // entirely and just use numbers. | ||
10 | enum chimera_ergo_layers | ||
11 | { | ||
12 | _QWERTY, | ||
13 | _CAPS, | ||
14 | _NUMPAD, | ||
15 | _SYMBOLS, | ||
16 | _MACROS, | ||
17 | _NAV | ||
18 | }; | ||
19 | |||
20 | enum custom_keycodes { | ||
21 | SC_INCL = SAFE_RANGE, | ||
22 | SC_PULL, | ||
23 | SC_PUSH, | ||
24 | SC_SCAP, | ||
25 | SC_SCOF | ||
26 | }; | ||
27 | |||
28 | #define SC_NMPD TG(_NUMPAD) | ||
29 | #define SC_SYMB TG(_SYMBOLS) | ||
30 | #define SC_SPFN LT(_NAV,KC_EQL) | ||
31 | #define SC_SCTL MT(MOD_LCTL, KC_LBRC) | ||
32 | #define SC_SCTR MT(MOD_LCTL, KC_RBRC) | ||
33 | #define SC_SPLT MT(MOD_LALT, KC_MINS) | ||
34 | #define SC_SPRT MT(MOD_LALT, KC_1) | ||
35 | #define SC_GBRC MT(MOD_RGUI, KC_RBRC) | ||
36 | #define SC_MESC LT(_MACROS, KC_ESC) | ||
37 | #define SC_CAD LALT(LCTL(KC_DEL)) | ||
38 | |||
39 | #define LONGPRESS_DELAY 150 | ||
40 | //#define LAYER_TOGGLE_DELAY 300 | ||
41 | |||
42 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
43 | |||
44 | [_QWERTY] = LAYOUT( | ||
45 | KC_LBRC, KC_1, SC_SCTL, SC_SPLT, SC_SPFN, KC_5, KC_6, SC_GBRC, SC_SPRT, SC_SCTR, KC_0, KC_RBRC, | ||
46 | SC_MESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_QUOT, | ||
47 | KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT, | ||
48 | KC_LSPO, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSPC, | ||
49 | SC_NMPD, KC_BSPC, KC_SPC, SC_SYMB | ||
50 | ), | ||
51 | |||
52 | [_CAPS] = LAYOUT( | ||
53 | _______, KC_UNDS, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
54 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
55 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_COLN, _______, | ||
56 | SC_SCOF, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, SC_SCOF, | ||
57 | _______, _______, _______, _______ | ||
58 | ), | ||
59 | |||
60 | [_NUMPAD] = LAYOUT( | ||
61 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MINS, _______, | ||
62 | _______, _______, KC_COLN, _______, _______, _______, _______, KC_7, KC_8, KC_9, KC_ASTR, _______, | ||
63 | _______, _______, KC_DOT , _______, _______, _______, _______, KC_4, KC_5, KC_6, KC_PLUS, _______, | ||
64 | _______, _______, _______, _______, _______, _______, _______, KC_1, KC_2, KC_3, KC_SLSH, _______, | ||
65 | _______, _______, _______, KC_0 | ||
66 | ), | ||
67 | |||
68 | [_SYMBOLS] = LAYOUT( | ||
69 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
70 | _______, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSLS, | ||
71 | KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_TILD, KC_EQL, KC_UNDS, KC_LCBR, KC_RCBR, _______, | ||
72 | KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_GRV, KC_PLUS, KC_MINS, KC_LBRC, KC_RBRC, _______, | ||
73 | KC_PIPE, _______, _______, _______ | ||
74 | ), | ||
75 | |||
76 | [_MACROS] = LAYOUT( | ||
77 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
78 | _______, _______, _______, _______, _______, _______, _______, _______, SC_INCL, _______, _______, _______, | ||
79 | _______, _______, _______, SC_CAD, _______, _______, _______, _______, _______, _______, _______, _______, | ||
80 | SC_SCAP, _______, _______, _______, _______, _______, _______, _______, SC_PULL, SC_PUSH, _______, _______, | ||
81 | _______, _______, _______, _______ | ||
82 | ), | ||
83 | |||
84 | [_NAV] = LAYOUT( | ||
85 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
86 | _______, _______, _______, _______, _______, _______, _______, KC_PGUP, KC_UP, KC_PGDN, KC_PSCR, _______, | ||
87 | _______, _______, _______, _______, _______, _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, | ||
88 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
89 | _______, KC_DEL, _______, _______ | ||
90 | ), | ||
91 | |||
92 | }; | ||
93 | |||
94 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
95 | switch(keycode) { | ||
96 | /* include some kind of library or header */ | ||
97 | case SC_INCL: | ||
98 | if (record->event.pressed) { | ||
99 | SEND_STRING("#include <>"); | ||
100 | tap_code(KC_LEFT); | ||
101 | } | ||
102 | return false; | ||
103 | case SC_PULL: | ||
104 | if (record->event.pressed) { | ||
105 | SEND_STRING("git pull"); | ||
106 | tap_code(KC_ENT); | ||
107 | } | ||
108 | return false; | ||
109 | case SC_PUSH: | ||
110 | if (record->event.pressed) { | ||
111 | SEND_STRING("git push"); | ||
112 | tap_code(KC_ENT); | ||
113 | } | ||
114 | return false; | ||
115 | case SC_SCAP: | ||
116 | if (record->event.pressed) { | ||
117 | layer_on(_CAPS); | ||
118 | tap_code(KC_CAPS); | ||
119 | } | ||
120 | return false; | ||
121 | case SC_SCOF: | ||
122 | if (record->event.pressed) { | ||
123 | layer_off(_CAPS); | ||
124 | tap_code(KC_CAPS); | ||
125 | } | ||
126 | return false; | ||
127 | default: | ||
128 | return true; | ||
129 | } | ||
130 | return true; | ||
131 | }; | ||
132 | |||
133 | void matrix_scan_user(void) { | ||
134 | uint8_t layer = biton32(layer_state); | ||
135 | |||
136 | switch (layer) { | ||
137 | case _QWERTY: | ||
138 | set_led_green; | ||
139 | break; | ||
140 | case _CAPS: | ||
141 | set_led_white; | ||
142 | break; | ||
143 | case _NUMPAD: | ||
144 | set_led_blue; | ||
145 | break; | ||
146 | case _SYMBOLS: | ||
147 | set_led_red; | ||
148 | break; | ||
149 | case _NAV: | ||
150 | set_led_magenta; | ||
151 | break; | ||
152 | case _MACROS: | ||
153 | set_led_cyan; | ||
154 | break; | ||
155 | default: | ||
156 | set_led_green; | ||
157 | break; | ||
158 | } | ||
159 | }; | ||