[chore} Working on gitea actions
Some checks failed
Compile my Keebs / lint-and-compile (push) Failing after 21s
Some checks failed
Compile my Keebs / lint-and-compile (push) Failing after 21s
This commit is contained in:
25
macropad/keymaps/default/keymap.c
Normal file
25
macropad/keymaps/default/keymap.c
Normal file
@@ -0,0 +1,25 @@
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
// Layout definitions
|
||||
#define _MACOS 0
|
||||
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
/*
|
||||
* ┌─--──┬─--──┬─--──┬─--──┐
|
||||
* │COPY │PSTE │SALL │TO(_LINUX)│
|
||||
* ├─--──┼─--──┼─--──┼─--──┤
|
||||
* │SPOT │UP │ ~/` │TO(_NUMPAD)│
|
||||
* ├─--──┼─--──┼─--──┼─--──┤
|
||||
* │LEFT │DOWN │RGHT │OSL(_OTHER)│
|
||||
* ├─--──┼─--──┼─--──┼─--──┤
|
||||
* │HOME │ENTR │END │ESC │
|
||||
* └─--──┴─--──┴─--──┴─--──┘
|
||||
*/
|
||||
[_MACOS] = LAYOUT_ortho_4x4(
|
||||
LGUI(KC_C), LGUI(KC_V), LGUI(KC_A), KC_GRV,
|
||||
LGUI(KC_SPACE), KC_UP, KC_GRV, KC_GRV,
|
||||
KC_LEFT, KC_DOWN, KC_RGHT, KC_GRV,
|
||||
KC_HOME, KC_ENT, KC_END, KC_ESC
|
||||
)
|
||||
};
|
||||
Reference in New Issue
Block a user