forked from getreuer/qmk-keymap
-
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.
* This seems to be ok. * add the planck. * prepare for something else.
- Loading branch information
Showing
11 changed files
with
161 additions
and
59 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
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 |
---|---|---|
|
@@ -2,6 +2,8 @@ build: clean | |
DOCKER_BUILDKIT=1 docker buildx build -o type=local,dest=result . | ||
redox: | ||
DOCKER_BUILDKIT=1 docker buildx build --build-arg="KEYBOARD=redox" -o type=local,dest=result . | ||
planck: | ||
DOCKER_BUILDKIT=1 docker buildx build --build-arg="KEYBOARD=planck/rev6" -o type=local,dest=result . | ||
fetch_totem_src: | ||
git submodule add -f [email protected]:GEIGEIGEIST/qmk-config-totem.git | ||
git submodule sync | ||
|
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,26 @@ | ||
#pragma once | ||
|
||
#define IGNORE_MOD_TAP_INTERRUPT // Lets you roll mod-tap keys | ||
#define TAPPING_FORCE_HOLD // Allows mod use immediately after tap use | ||
#define TAPPING_FORCE_HOLD_PER_KEY // BUT NOT EVERYWHERE. | ||
#define TAPPING_TERM 200 // Base tapping term | ||
#define TAPPING_TERM_PER_KEY // Adjust tapping term for finger strength | ||
|
||
#define PLANCK(k) CONV_PLANCK(k) | ||
|
||
#define CONV_PLANCK( \ | ||
k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, \ | ||
k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, \ | ||
k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, \ | ||
k34, k35, k36, k37 \ | ||
) \ | ||
{ \ | ||
{ KC_ESC, k01, k02, k03, k04, k05 }, \ | ||
{ KC_TAB, k11, k12, k13, k14, k15 }, \ | ||
{ OS_LSFT, k21, k22, k23, k24, k25 }, \ | ||
{ KC_LCTL, KC_LALT, KC_LGUI, KC_LALT, KC_RCTL, k36 }, \ | ||
{ k06, k07, k08, k09, k0a, KC_BSPC }, \ | ||
{ k16, k17, k18, k19, k1a, KC_ENTER }, \ | ||
{ k26, k27, k28, k29, k2a, OSL(NUM) }, \ | ||
{ k37, OSL(NUM), KC_RGUI, OSL(NUM), k34, k35 } \ | ||
} |
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,10 @@ | ||
#include QMK_KEYBOARD_H | ||
#include "layout.h" | ||
#include "g/keymap_combo.h" | ||
|
||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
[ALPHA] = PLANCK(_BASE), | ||
[NAV] = PLANCK(_NAV), | ||
[NUM] = PLANCK(_NUM), | ||
[SYM] = PLANCK(_SYM1) | ||
}; |
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
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
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