Initial User Config.
This commit is contained in:
commit
094e904fa6
5 changed files with 55 additions and 0 deletions
5
.github/workflows/build.yml
vendored
Normal file
5
.github/workflows/build.yml
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
on: [push, pull_request, workflow_dispatch]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
uses: zmkfirmware/zmk/.github/workflows/build-user-config.yml@main
|
16
build.yaml
Normal file
16
build.yaml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# This file generates the GitHub Actions matrix
|
||||||
|
# For simple board + shield combinations, add them
|
||||||
|
# to the top level board and shield arrays, for more
|
||||||
|
# control, add individual board + shield combinations to
|
||||||
|
# the `include` property, e.g:
|
||||||
|
#
|
||||||
|
# board: [ "nice_nano_v2" ]
|
||||||
|
# shield: [ "corne_left", "corne_right" ]
|
||||||
|
# include:
|
||||||
|
# - board: bdn9_rev2
|
||||||
|
# - board: nice_nano_v2
|
||||||
|
# shield: reviung41
|
||||||
|
#
|
||||||
|
---
|
||||||
|
include:
|
||||||
|
- board: planck_rev6
|
1
config/planck_rev6.conf
Normal file
1
config/planck_rev6.conf
Normal file
|
@ -0,0 +1 @@
|
||||||
|
# Put configuration options here
|
22
config/planck_rev6.keymap
Normal file
22
config/planck_rev6.keymap
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
#include <behaviors.dtsi>
|
||||||
|
#include <dt-bindings/zmk/keys.h>
|
||||||
|
|
||||||
|
/ {
|
||||||
|
keymap {
|
||||||
|
compatible = "zmk,keymap";
|
||||||
|
|
||||||
|
default_layer {
|
||||||
|
// -----------------------------------------------------------------------------------------
|
||||||
|
// | TAB | Q | W | E | R | T | Y | U | I | O | P | BSPC |
|
||||||
|
// | ESC | A | S | D | F | G | H | J | K | L | ; | ' |
|
||||||
|
// | SHIFT | Z | X | C | V | B | N | M | , | . | / | RET |
|
||||||
|
// | FN | LGUI | LALT | LCTL | LOWR | SPACE | RAIS | LARW | DARW | UARW | RARW |
|
||||||
|
bindings = <
|
||||||
|
&kp TAB &kp Q &kp W &kp E &kp R &kp T &kp Y &kp U &kp I &kp O &kp P &kp DEL
|
||||||
|
&kp ESC &kp A &kp S &kp D &kp F &kp G &kp H &kp J &kp K &kp L &kp SEMI &kp SQT
|
||||||
|
&kp LSHFT &kp Z &kp X &kp C &kp V &kp B &kp N &kp M &kp COMMA &kp DOT &kp BSLH &kp RET
|
||||||
|
&trans &kp LGUI &kp LALT &kp LCTRL &trans &trans &kp SPACE &trans &kp LEFT &kp DOWN &kp UP &kp RIGHT
|
||||||
|
>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
11
config/west.yml
Normal file
11
config/west.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
manifest:
|
||||||
|
remotes:
|
||||||
|
- name: zmkfirmware
|
||||||
|
url-base: https://github.com/zmkfirmware
|
||||||
|
projects:
|
||||||
|
- name: zmk
|
||||||
|
remote: zmkfirmware
|
||||||
|
revision: main
|
||||||
|
import: app/west.yml
|
||||||
|
self:
|
||||||
|
path: config
|
Loading…
Add table
Add a link
Reference in a new issue