-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkmonad
57 lines (46 loc) · 1.7 KB
/
kmonad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
(defcfg
input (device-file "/dev/input/{{ .devfile }}")
output (uinput-sink "{{ .sink }}")
fallthrough true
allow-cmd false
)
(defsrc
esc
grv 1 2 3 4 5 6 7 8 9 0 - = bspc
tab q w e r t y u i o p [ ] \
caps a s d f g h j k l ; ' ret
lsft z x c v b n m , . / rsft
lctl lmet lalt spc ralt ssrq cmp rctl
)
(deflayer dvorak
caps
grv 1 2 3 4 5 6 7 8 9 0 [ ] bspc
tab ' , . p y f g c r l / = \
@xcp a o e u i d h t n s - ret
lsft ; q j k x b m w v z rsft
lctrl lmet lalt @mov ralt ssrq cmp @us
)
(defalias
xcp (tap-hold-next-release 400 esc ctl)
mov (tap-hold-next-release 400 spc (layer-toggle arrows))
)
(deflayer arrows
_
_ _ _ _ _ _ _ _ _ _ _ _ _ _
_ _ _ _ _ _ _ _ _ _ _ _ _ _
_ _ _ _ _ _ _ left down up rght _ _
_ _ _ _ _ _ _ _ _ _ _ _
_ _ _ _ _ _ _ _
)
(deflayer qwerty
esc
grv 1 2 3 4 5 6 7 8 9 0 - = bspc
tab q w e r t y u i o p [ ] \
caps a s d f g h j k l ; ' ret
lsft z x c v b n m , . / rsft
lctl lmet lalt spc ralt ssrq cmp @dv
)
(defalias
dv (layer-switch dvorak)
us (layer-switch qwerty)
)