summaryrefslogtreecommitdiff
path: root/keyboards/kiwikeebs/macro/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/kiwikeebs/macro/keymaps/default/keymap.c')
-rw-r--r--keyboards/kiwikeebs/macro/keymaps/default/keymap.c20
1 files changed, 15 insertions, 5 deletions
diff --git a/keyboards/kiwikeebs/macro/keymaps/default/keymap.c b/keyboards/kiwikeebs/macro/keymaps/default/keymap.c
index 7d1acce308..caa6b4aafc 100644
--- a/keyboards/kiwikeebs/macro/keymaps/default/keymap.c
+++ b/keyboards/kiwikeebs/macro/keymaps/default/keymap.c
@@ -18,17 +18,27 @@
// Defines names for use in layer keycodes and the keymap
enum layer_names {
_BASE,
- _FN
+ _FN1,
+ _FN2,
+ _FN3
};
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/* Base */
[_BASE] = LAYOUT(
- KC_DEL, KC_HOME, LT(_FN,KC_END),
+ KC_DEL, KC_HOME, LT(_FN1,KC_END),
KC_MPRV, KC_MPLY, KC_MNXT, KC_MUTE
),
- [_FN] = LAYOUT(
- KC_1, KC_UP, _______,
- KC_LEFT, KC_DOWN, KC_RGHT, _______
+ [_FN1] = LAYOUT(
+ RESET, KC_UP, _______,
+ KC_LEFT, KC_DOWN, KC_RGHT, MAGIC_TOGGLE_NKRO
+ ),
+ [_FN2] = LAYOUT(
+ _______, _______, _______,
+ _______, _______, _______, _______
+ ),
+ [_FN3] = LAYOUT(
+ _______, _______, _______,
+ _______, _______, _______, _______
)
};