Skip to content

Instantly share code, notes, and snippets.

@unycone
Created January 28, 2020 07:54
Show Gist options
  • Save unycone/a24c2560296ba85e0c3e247cb08a3b7c to your computer and use it in GitHub Desktop.
Save unycone/a24c2560296ba85e0c3e247cb08a3b7c to your computer and use it in GitHub Desktop.
dozen0
#include QMK_KEYBOARD_H
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] =
{
// Layer 0
LAYOUT(KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, \
MO(1), KC_A, KC_S, KC_D, KC_F, KC_G ),
// Layer 1
LAYOUT(KC_DEL, KC_Y, KC_U, KC_I, KC_O, KC_P, \
KC_TRNS, KC_H, KC_J, KC_K, KC_L, KC_COMM ),
};
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
return true;
}
void matrix_init_user(void) {
}
void matrix_scan_user(void) {
}
void led_set_user(uint8_t usb_led) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment