-
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.
- Loading branch information
1 parent
41177e6
commit decc198
Showing
1 changed file
with
108 additions
and
1 deletion.
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 |
---|---|---|
@@ -1 +1,108 @@ | ||
#include "base.keymap" | ||
/* | ||
* Copyright (c) 2020 The ZMK Contributors | ||
* | ||
* SPDX-License-Identifier: MIT | ||
*/ | ||
|
||
#include <behaviors.dtsi> | ||
#include <dt-bindings/zmk/keys.h> | ||
|
||
#define DEF_L 0 | ||
#define NAV_L 1 | ||
#define NUM_L 2 | ||
#define SYM_L 3 | ||
#define OTH_L 4 | ||
|
||
// Using layer taps on thumbs, having quick tap as well helps w/ repeating space/backspace | ||
< { quick_tap_ms = <200>; }; | ||
|
||
/ { | ||
behaviors { | ||
hm: homerow_mods { | ||
compatible = "zmk,behavior-hold-tap"; | ||
label = "homerow mods"; | ||
#binding-cells = <2>; | ||
tapping_term_ms = <225>; | ||
flavor = "tap-preferred"; | ||
bindings = <&kp>, <&kp>; | ||
}; | ||
}; | ||
|
||
combos { | ||
compatible = "zmk,combos"; | ||
combo_z { | ||
timeout-ms = <50>; | ||
key-positions = <0 10>; | ||
bindings = <&kp Z>; | ||
}; | ||
combo_b { | ||
timeout-ms = <50>; | ||
key-positions = <4 14>; | ||
bindings = <&kp B>; | ||
}; | ||
|
||
combo_n { | ||
timeout-ms = <50>; | ||
key-positions = <5 15>; | ||
bindings = <&kp N>; | ||
}; | ||
}; | ||
}; | ||
|
||
/ { | ||
keymap { | ||
compatible = "zmk,keymap"; | ||
|
||
default_layer { | ||
bindings = < | ||
&kp Q &kp W &kp E &kp R &kp T &kp Y &kp U &kp I &kp O &kp P | ||
&hm LGUI A &hm LALT S &hm LCTRL D &hm LSHFT F &kp G &kp H &hm RSHFT J &hm RCTRL K &hm RALT L &hm RGUI SEMI | ||
&kp X &kp C &kp V &kp M &kp COMMA &kp DOT | ||
< NAV_L TAB &kp RET < NUM_L SPACE < SYM_L BKSP | ||
>; | ||
}; | ||
|
||
nav_layer { | ||
label = "Nav"; | ||
bindings = < | ||
&trans &trans &trans &trans &trans &trans &kp HOME &kp UARW &kp PG_UP &trans | ||
&trans &trans &trans &trans &trans &trans &kp LARW &kp DARW &kp RARW &trans | ||
&trans &trans &trans &kp END &trans &kp PG_DN | ||
&trans &trans &kp ESC &kp DEL | ||
>; | ||
}; | ||
|
||
num_layer { | ||
label = "Num"; | ||
bindings = < | ||
&kp LBKT &kp N7 &kp N8 &kp N9 &kp RBKT &trans &trans &trans &trans &trans | ||
&kp SEMI &kp N4 &kp N5 &kp N6 &kp EQUAL &trans &trans &trans &trans &trans | ||
&kp N1 &kp N2 &kp N3 &trans &trans &trans | ||
&kp N0 &kp MINUS &trans &trans | ||
>; | ||
}; | ||
|
||
sym_layer { | ||
label = "Sym"; | ||
bindings = < | ||
&kp LBRC &kp LS(N7) &kp LS(N8) &kp LS(N9) &kp RBRC &trans &trans &trans &trans &trans | ||
&kp COLON &kp LS(N4) &kp LS(N5) &kp LS(N6) &kp PLUS &trans &trans &trans &trans &trans | ||
&kp LS(N1) &kp LS(N2) &kp LS(N3) &trans &trans &trans | ||
&kp LS(N0) &kp UNDER &trans &trans | ||
>; | ||
}; | ||
|
||
/* | ||
other_layer { | ||
label = "Other"; | ||
bindings = < | ||
&bt BT_CLR &trans &trans &trans &trans &trans &trans &trans &trans &trans | ||
&trans &trans &trans &trans &trans &trans &trans &trans &trans &trans | ||
&trans &trans &trans &trans &trans &bt BT_SEL 0 &bt BT_SEL 1 &bt BT_SEL 2 &bt BT_SEL 3 &bt BT_SEL 4 | ||
&trans &trans &trans &trans | ||
>; | ||
}; | ||
*/ | ||
|
||
}; | ||
}; |