-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
29 additions
and
22 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,23 @@ | ||
#pragma once | ||
|
||
#include QMK_KEYBOARD_H | ||
|
||
|
||
enum charybdis_keymap_layers { | ||
LAYER_BASE = 0, | ||
LAYER_FUNCTION, | ||
LAYER_NAVIGATION, | ||
LAYER_MEDIA, | ||
LAYER_POINTER, | ||
LAYER_NUMERAL, | ||
LAYER_SYMBOLS, | ||
}; | ||
|
||
#define ESC_MED LT(LAYER_MEDIA, KC_ESC) | ||
#define SPC_NAV LT(LAYER_NAVIGATION, KC_SPC) | ||
#define TAB_FUN LT(LAYER_FUNCTION, KC_BSPC) | ||
#define ENT_SYM LT(LAYER_SYMBOLS, KC_ENT) | ||
#define BSP_NUM LT(LAYER_NUMERAL, KC_E) | ||
#define _L_PTR(KC) LT(LAYER_POINTER, KC) | ||
|
||
|
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
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 |
---|---|---|
|
@@ -3,3 +3,4 @@ COMBO_ENABLE = yes | |
CAPS_WORD_ENABLE = yes | ||
OS_DETECTION_ENABLE = yes | ||
REPEAT_KEY_ENABLE = yes | ||
SRC += repeat.c |