-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5a8ea79
commit db2d9ea
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#include QMK_KEYBOARD_H | ||
|
||
/* default generic keymap */ | ||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
[0] = LAYOUT_split_3x5_2( | ||
KC_W, KC_F, KC_P, KC_L, KC_U, KC_Y, | ||
KC_A, KC_R, KC_S, KC_T, KC_G, KC_M, KC_N, KC_E, KC_I, KC_O, | ||
KC_Q, KC_C, KC_D, KC_H, KC_COMM, KC_DOT, | ||
KC_TRNS, KC_SPC, KC_BSPC, KC_ENT | ||
) | ||
}; | ||
|
||
/* combo definitions */ | ||
const uint16_t PROGMEM combo_x[] = {KC_W, KC_F, COMBO_END}; | ||
const uint16_t PROGMEM combo_b[] = {KC_F, KC_P, COMBO_END}; | ||
const uint16_t PROGMEM combo_z[] = {KC_Q, KC_C, COMBO_END}; | ||
const uint16_t PROGMEM combo_v[] = {KC_C, KC_D, COMBO_END}; | ||
const uint16_t PROGMEM combo_j[] = {KC_L, KC_U, COMBO_END}; | ||
const uint16_t PROGMEM combo_k[] = {KC_H, KC_COMM, COMBO_END}; | ||
combo_t key_combos[] = { | ||
COMBO(combo_x, KC_X), | ||
COMBO(combo_b, KC_B), | ||
COMBO(combo_z, KC_Z), | ||
COMBO(combo_v, KC_V), | ||
COMBO(combo_j, KC_J), | ||
COMBO(combo_k, KC_K), | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
COMBO_ENABLE = yes |