aboutsummaryrefslogtreecommitdiff
path: root/posts/programming_on_34_keys.md
diff options
context:
space:
mode:
Diffstat (limited to 'posts/programming_on_34_keys.md')
-rw-r--r--posts/programming_on_34_keys.md159
1 files changed, 159 insertions, 0 deletions
diff --git a/posts/programming_on_34_keys.md b/posts/programming_on_34_keys.md
new file mode 100644
index 0000000..15610d6
--- /dev/null
+++ b/posts/programming_on_34_keys.md
@@ -0,0 +1,159 @@
1Minimizing your keyboard layout is a slippery slope. A few
2months ago, I built the
3[Ferricy](https://github.com/icyphox/ferricy), a
434-key-split-ortho-ergo keyboard. The Ferricy is a fork of
5the [Ferris Sweep MX
6Bling](https://github.com/davidphilipbarr/Sweep/tree/main/Sweep%20Bling%20MX).
7
8![The Ferricy, designed by [icyphox](https://icyphox.sh)](https://u.peppe.rs/otz.jpg)
9
10
11My daily use consists of a bit of prose and a lot of
12program, my layout has evolved accordingly.
13
14# Base Layer
15
16![Colemak with no mods](https://u.peppe.rs/base.png)
17
18The base layer contains alphabets, four symbols and four
19whitespace keys:
20
21- Alphas: Stock Colemak, with no modifications whatsoever
22- Symbols: `. , / ;`
23- Whitespace: tab, space, enter, backspace (from left to
24 right)
25
26# Layers
27
28Keyboard input is complex and it is impossible to skirt
29around it. You can either use a keyboard with enough keys to
30supply all possible inputs (a mechanical burden), or you can
31use firmware to supply all possible inputs (a cognitive
32burden). Layers are a cognitive burden.
33
34I use 3 layers, heavily inspired by
35[Miryoku](https://github.com/manna-harbour/miryoku), but
36tuned for programming. Excluding the base Colemak layer:
37
38- `NAV`: activated on holding `space` (left thumb)
39- `NUM`: activated on holding `tab` (left thumb)
40- `SYM`: activated on holding `enter` (right thumb)
41
42## The `NAV` Layer
43
44As the name suggests, this layer is focused on navigation.
45Arrow keys and the likes.
46
47![`NAV`, on holding `space`](https://u.peppe.rs/nav.png)
48
49Using Vim and Colemak means you lose out on HJKL navigation.
50However, on activating the `NAV` layer, the right home-row is
51converted into arrow keys. In essence, by holding space, I
52can navigate Vim with the home-row, or Firefox, or my PDF
53reader. I no longer need to look for software that allows
54Vim navigation keys, because it is baked into the firmware!
55
56My Vim motions are not limited to HJKL. In fact, my Vim
57motions are rarely HJKL. I tend to use `}` (next paragraph)
58and `)` (next sentence) more often. As a result, these have
59found their way into my `NAV` layer, over the likes of
60`PgDown` and `End`. Having brackets at my index and middle
61fingers is nice for programming too.
62
63## The `SYM` Layer
64
65![`SYM`, on holding `enter`](https://u.peppe.rs/sym.png)
66
67This layer contains all the symbols that you would find by
68hitting `Shift` and a key on the number row. Probably
69noteworthy to Vim users: the symbols are arranged in the
70form of a mirrored numpad for exactly one reason: to move
71`$` to the left of `^`. It has always annoyed me that `$`
72moves the cursor to the end of the line and `^` moves it to
73the beginning, but their position on a typical number row
74are reversed, 4 comes before 6.
75
76## The `NUM` layer
77
78![`NUM`, on holding `tab`](https://u.peppe.rs/num.png)
79
80Another deviation from Miryoku, the numpad just feels _right_
81on my _right_ hand.
82
83# ZMK Combos
84
85If you have been paying close attention, you might have
86noticed that `escape` didn't make it to any layer. `escape`
87is too crucial to put on a non-base layer, but at the same
88time, not as important to deserve a place on the base layer.
89That is where ZMK's combos come in. Combos let you tap any
90number of keys, and combine them to form a single key. I
91have combos set up for underscore, minus, escape and
92caps-word (more on caps-word later):
93
94![Combos are almost piano-like](https://u.peppe.rs/combos.png)
95
96# Home-row Mods
97
98Inherited from Miryoku, I have home-row mods for activating
99`Super`, `Alt`, `Shift`, `Ctrl` and `Hyper` (`Ctrl + Shift +
100Alt + Super`). The idea is to send `T` on tap and `Ctrl` on
101hold. Home-row mods are fairly popular, so I'll not go into
102the details.
103
104![Super, Alt, Shift, Ctrl, Hyper; on the left half, and
105mirrored on the right half](https://u.peppe.rs/homerow.png)
106
107`Hyper` bridges the gap between firmware and software. You
108can never configure key combination that, opens Firefox, for
109example, through firmware alone. However, with the `Hyper`
110key, and some `sxhkd` magic, you can emulate that. Pressing
111`Hyper + F` on a keyboard is just two keys, but the key
112codes sent are `Ctrl + Shift + Alt + Super + F`. That key
113combination is not intercepted by any application as a
114shortcut, except for the following `sxhkd` stanza:
115
116```bash
117super + alt + shift + ctrl + f
118 xdotool search "Mozilla Firefox" windowactivate
119```
120
121Alternatively, you can intercept unused `F` keys: `F13`
122through `F24`.
123
124Home-row mods are mirrored on each half because it would be
125impossible to hit `Ctrl + T` if not; they lie on the same
126key.
127
128# Caps-word
129
130Caps-word is a clever caps-lock, built into ZMK. Typing out
131constants such as `PORT` with home-row mods would look like
132this:
133
134- hold `e` (shift) on left hand, and tap `p` on right hand
135- hold `e` (shift) on left hand, and tap `o` on right hand
136- hold `s` (shift) on right hand, and tap `r` on left hand
137- hold `s` (shift) on right hand, and tap `t` on left hand
138
139This hold-alternate-hold dance gets tiring quickly. With
140caps-word, however:
141
142- toggle `caps_word`
143- type out `p`, `o`, `r`, `t`
144- hit a _break_ character (space, enter will do)
145- continue
146
147Caps-word automatically disables capitalization upon
148encountering a breaking character, (which are space, enter
149or any modifier, by default) right in the firmware!
150
151# Findings
152
15334-keys has been reasonably comfortable to use, for both
154prose and program. My palms do not move across the desk at
155all, as I reach for keys. I mostly write Rust and Bash, and
156my layout has evolved to accomodate special characters from
157their grammars (angled brackets and hyphens, specifically).
158If you are on a similar journey, I would suggest focusing on
159accuracy and comfort over speed. Speed comes with time.