deflayer_base_lt.kbd 986 B

12345678910111213141516171819202122232425
  1. ;; Base layer: the 3 main thumb keys become mod/taps
  2. (deflayer base
  3. _ _ _ _ _ _ _ _ _ _ _
  4. q w e r t y u i o p
  5. a s d f g h j k l ;
  6. z x c v b 102d n m , . /
  7. @sft @nav @sym
  8. )
  9. (defalias
  10. ;; Main mod-tap: VimNav layer when hold, Space when tapped.
  11. ;; The space key must be hold long enough (300ms) to become a layer shift.
  12. nav (tap-hold 200 300 spc (layer-while-held navigation))
  13. ;; Space-cadet thumb keys: Shift/BackSpace, AltGr/Escape
  14. ;; - acts as a modifier by default, or as BS/Esc when tapped separately;
  15. ;; - works great with Qwerty-Lafayette and Ergo-L keyboard layouts, where
  16. ;; AltGr is not used outside of the 3×10 main alpha keys.
  17. alt (tap-hold-press 200 200 esc ralt)
  18. sft (tap-hold-press 200 200 bspc lalt)
  19. sym (tap-hold-press 200 200 esc (layer-while-held symbols))
  20. )
  21. ;; vim: set ft=lisp