2018-04-20 08:51:34 -07:00
|
|
|
// Below layout is based upon /u/That-Canadian's planck layout
|
2019-03-19 12:57:40 -07:00
|
|
|
#include QMK_KEYBOARD_H
|
2018-04-20 08:51:34 -07:00
|
|
|
|
|
|
|
|
|
|
|
// Each layer gets a name for readability, which is then used in the keymap matrix below.
|
|
|
|
// The underscores don't mean anything - you can have a layer called STUFF or any other name.
|
|
|
|
// Layer names don't all need to be of the same length, obviously, and you can also skip them
|
|
|
|
// entirely and just use numbers.
|
2022-08-27 23:13:44 -07:00
|
|
|
enum layer_names {
|
|
|
|
_QWERTY,
|
|
|
|
_FUNC
|
|
|
|
};
|
2018-04-20 08:51:34 -07:00
|
|
|
|
|
|
|
// Defines for task manager and such
|
|
|
|
#define CALTDEL LCTL(LALT(KC_DEL))
|
|
|
|
#define TSKMGR LCTL(LSFT(KC_ESC))
|
|
|
|
|
|
|
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|
|
|
|
|
|
|
/* Qwerty
|
|
|
|
* ,-------------.
|
2019-03-19 12:57:40 -07:00
|
|
|
* | 1 | 2 |
|
2018-04-20 08:51:34 -07:00
|
|
|
* |------+------|
|
2019-03-19 12:57:40 -07:00
|
|
|
* | 3 | 4 |
|
2018-04-20 08:51:34 -07:00
|
|
|
* |------+------|
|
|
|
|
* | 5 | 6 |
|
|
|
|
* |------+------|
|
|
|
|
* | FUNC | 8 |
|
|
|
|
* `-------------'
|
|
|
|
*/
|
2021-12-14 04:41:16 -08:00
|
|
|
[_QWERTY] = LAYOUT(
|
|
|
|
KC_1, KC_2,
|
|
|
|
KC_3, KC_4,
|
|
|
|
KC_5, KC_6,
|
|
|
|
MO(_FUNC), KC_8
|
2018-04-20 08:51:34 -07:00
|
|
|
),
|
|
|
|
|
|
|
|
/* Function
|
|
|
|
* ,-------------.
|
2019-03-19 12:57:40 -07:00
|
|
|
* | Q |CALDEL|
|
2018-04-20 08:51:34 -07:00
|
|
|
* |------+------|
|
2019-03-19 12:57:40 -07:00
|
|
|
* | A |TSKMGR|
|
2018-04-20 08:51:34 -07:00
|
|
|
* |------+------|
|
|
|
|
* | Z | X |
|
|
|
|
* |------+------|
|
|
|
|
* | | C |
|
|
|
|
* `-------------'
|
|
|
|
*/
|
2021-12-14 04:41:16 -08:00
|
|
|
[_FUNC] = LAYOUT(
|
|
|
|
KC_Q, CALTDEL,
|
|
|
|
KC_A, TSKMGR,
|
|
|
|
KC_Z, KC_X,
|
|
|
|
_______, KC_C
|
2018-04-20 08:51:34 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
};
|