You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
551 B
29 lines
551 B
#include <dt-bindings/zmk/keys.h> |
|
#include <behaviors.dtsi> |
|
#include <dt-bindings/zmk/kscan_mock.h> |
|
|
|
/ { |
|
behaviors { |
|
hp: behavior_hold_preferred { |
|
compatible = "zmk,behavior-hold-tap"; |
|
label = "MOD_TAP"; |
|
#binding-cells = <2>; |
|
flavor = "hold-preferred"; |
|
tapping-term-ms = <300>; |
|
quick-tap-ms = <300>; |
|
bindings = <&kp>, <&kp>; |
|
global-quick-tap; |
|
}; |
|
}; |
|
|
|
keymap { |
|
compatible = "zmk,keymap"; |
|
label ="Default keymap"; |
|
|
|
default_layer { |
|
bindings = < |
|
&hp LEFT_SHIFT F &hp LEFT_CONTROL G |
|
&kp D &none>; |
|
}; |
|
}; |
|
};
|
|
|