base_lt_hrm.kbd 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. ;; Base layer: layer-taps under the thumbs + home-row mods on SDF and JKL
  2. (deflayer base
  3. _ _ _ _ _ _ _ _ _ _ _
  4. q w e r t y u i o p
  5. a @ss @dd @ff g h @jj @kk @ll ;
  6. z x c v b < n m , . /
  7. @sft @nav @sym
  8. )
  9. ;; Timing variables are defined in `kanata.kbd` file.
  10. (defalias
  11. ;; Main mod-tap: Nav layer when held, Space when tapped.
  12. nav (tap-hold $tap_timeout $long_hold_timeout spc (layer-while-held navigation))
  13. ;; Space-cadet thumb keys: Shift/BackSpace, AltGr/Enter.
  14. ;; Acts as a modifier by default, or as BackSpace/Enter when tapped separately.
  15. sft (tap-hold-press $tap_timeout $hold_timeout bspc lsft)
  16. sym (tap-hold-press $tap_timeout $hold_timeout ret (layer-while-held symbols))
  17. ;; Home-row mods
  18. ss (tap-hold $tap_timeout $long_hold_timeout s lmet)
  19. dd (tap-hold $tap_timeout $long_hold_timeout d lctl)
  20. ff (tap-hold $tap_timeout $long_hold_timeout f lalt)
  21. jj (tap-hold $tap_timeout $long_hold_timeout j lalt)
  22. kk (tap-hold $tap_timeout $long_hold_timeout k rctl)
  23. ll (tap-hold $tap_timeout $long_hold_timeout l rmet)
  24. )
  25. ;; vim: set ft=lisp