diff --git a/modules/home/services/kanata/config.kbd b/modules/home/services/kanata/config.kbd index 54bbf69..e136f26 100644 --- a/modules/home/services/kanata/config.kbd +++ b/modules/home/services/kanata/config.kbd @@ -1,30 +1,60 @@ ;; vim: ft=commonlisp +;; Home row mods QWERTY example with more complexity. +;; Some of the changes from the basic example: +;; - when a home row mod activates tap, the home row mods are disabled +;; while continuing to type rapidly +;; - tap-hold-release helps make the hold action more responsive +;; - pressing another key on the same half of the keyboard +;; as the home row mod will activate an early tap action + (defcfg process-unmapped-keys yes ) - (defsrc - caps a s d f j k l ; + caps a s d f j k l ; ) - (defvar - tap-time 150 - hold-time 200 -) + ;; Note: consider using different time values for your different fingers. + ;; For example, your pinkies might be slower to release keys and index + ;; fingers faster. + tap-time 200 + hold-time 150 -(defalias - escctrl (tap-hold 100 100 esc caps) - a (tap-hold $tap-time $hold-time a lmet) - s (tap-hold $tap-time $hold-time s lalt) - d (tap-hold $tap-time $hold-time d lsft) - f (tap-hold $tap-time $hold-time f lctl) - j (tap-hold $tap-time $hold-time j rctl) - k (tap-hold $tap-time $hold-time k rsft) - l (tap-hold $tap-time $hold-time l ralt) - ; (tap-hold $tap-time $hold-time ; rmet) + left-hand-keys ( + q w e r t + a s d f g + z x c v b + ) + right-hand-keys ( + y u i o p + h j k l ; + n m , . / + ) ) - (deflayer base - @escctrl @a @s @d @f @j @k @l @; + @caps @a @s @d @f @j @k @l @; +) + +(deflayer nomods + @caps a s d f j k l ; +) +(deffakekeys + to-base (layer-switch base) +) +(defalias + tap (multi + (layer-switch nomods) + (on-idle-fakekey to-base tap 20) + ) + + caps (tap-hold 100 100 esc caps) + a (tap-hold-release-keys $tap-time $hold-time (multi a @tap) lctl $left-hand-keys) + s (tap-hold-release-keys $tap-time $hold-time (multi s @tap) lalt $left-hand-keys) + d (tap-hold-release-keys $tap-time $hold-time (multi d @tap) lsft $left-hand-keys) + f (tap-hold-release-keys $tap-time $hold-time (multi f @tap) lmet $left-hand-keys) + j (tap-hold-release-keys $tap-time $hold-time (multi j @tap) rmet $right-hand-keys) + k (tap-hold-release-keys $tap-time $hold-time (multi k @tap) rsft $right-hand-keys) + l (tap-hold-release-keys $tap-time $hold-time (multi l @tap) ralt $right-hand-keys) + ; (tap-hold-release-keys $tap-time $hold-time (multi ; @tap) rctl $right-hand-keys) )