You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

21 lines
980 B

#include QMK_KEYBOARD_H
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/*
* ┌───┬───┬───┬───┬───┬───┐
* │Tab│ Q │ W │ E │ R │ T │
* ├───┼───┼───┼───┼───┼───┤
* │Bsp│ A │ S │ D │ F │ G │
* ├───┼───┼───┼───┼───┼───┤
* │Sft│ Z │ X │ C │ V │ B │
* ├───┼───┼───┼───┼───┼───┤
* │Ctl│App│GUI│Alt│Spc│Spc│
* └───┴───┴───┴───┴───┴───┘
*/
[0] = LAYOUT_ortho_4x6(
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T,
KC_BKSP, KC_A, KC_S, KC_D, KC_F, KC_G,
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B,
KC_LCTL, KC_MENU, KC_LGUI, KC_LALT, KC_SPC, KC_SPC
)
};