52 lines
1.8 KiB
Plaintext
52 lines
1.8 KiB
Plaintext
/*
|
|
* Copyright (c) 2020 The ZMK Contributors
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include <behaviors.dtsi>
|
|
#include <dt-bindings/zmk/keys.h>
|
|
#include <dt-bindings/zmk/bt.h>
|
|
#include <dt-bindings/zmk/outputs.h>
|
|
|
|
#define DEFAULT 0
|
|
#define LOWER 1
|
|
#define ADJUST 2
|
|
|
|
&sk {
|
|
quick-release;
|
|
};
|
|
|
|
/ {
|
|
behaviors {
|
|
td_ss: tap_dance_0 {
|
|
compatible = "zmk,behavior-tap-dance";
|
|
label = "TAP_DANCE_0";
|
|
#binding-cells = <0>;
|
|
tapping-term-ms = <200>;
|
|
bindings = <&kp H>, <&kp LBKT>;
|
|
};
|
|
};
|
|
keymap {
|
|
compatible = "zmk,keymap";
|
|
|
|
default_layer {
|
|
bindings = <
|
|
&kp ESC &kp Q &kp W &kp E &kp R &kp T &kp Y &kp U &kp I &kp O &kp P &kp RETURN
|
|
&sk CAPS &kp A &kp S &kp D &kp F &kp G &td_ss &kp J &kp K &kp L &kp SEMI &kp SQT
|
|
&sk LSHFT &kp Z &kp X &kp C &kp V &kp B &kp N &kp M &kp COMMA &kp DOT &kp FSLH &sk RSHIFT
|
|
&kp LGUI &sk LCTRL &kp SPACE &mt LC(BSPC) BSPC &sk RALT &mo 1
|
|
>;
|
|
};
|
|
|
|
adjust_layer {
|
|
bindings = <
|
|
&kp C_MUTE &kp C_VOL_DN &kp C_VOL_UP &kp C_PREV &kp C_NEXT &kp C_PP &bt BT_SEL 0 &bt BT_SEL 1 &bt BT_SEL 2 &bt BT_SEL 3 &bt BT_SEL 4 &bt BT_CLR
|
|
&trans &trans &trans &trans &trans &trans &out OUT_BLE &out OUT_USB &trans &trans &trans &trans
|
|
&kp LSHIFT &trans &trans &trans &kp C_BRI_DN &kp C_BRI_UP &trans &trans &trans &trans &trans &kp PAUSE_BREAK
|
|
&trans &trans &trans &trans &trans &trans
|
|
>;
|
|
};
|
|
};
|
|
};
|