tangled
alpha
login
or
join now
bitquabit.com
/
dotfiles
0
fork
atom
My dotfiles
0
fork
atom
overview
issues
pulls
pipelines
helix: better keyboard shortcuts for selection
bitquabit.com
9 months ago
06036f72
c0b73200
verified
This commit was signed with the committer's
known signature
.
bitquabit.com
SSH Key Fingerprint:
SHA256:cKs0OrtrIm7mh+qos4S/TAlJ5ECS///DVwBrlMzguOM=
+13
-1
1 changed file
expand all
collapse all
unified
split
helix
config.toml
+13
-1
helix/config.toml
reviewed
···
10
10
11
11
[editor.whitespace]
12
12
render = "all"
13
13
-
characters = { space = " ", tab = "▏", newline = "¬" } # still the way to make tabs distinguisable w/o noisy dots on every space
13
13
+
characters = { space = " ", tab = "▏", newline = "¬" }
14
14
15
15
16
16
[editor.lsp]
···
22
22
[keys.normal]
23
23
"ret" = "goto_word"
24
24
25
25
+
# Who needs visual mode when you've got Kakoune
26
26
+
H = "extend_char_left"
27
27
+
J = "extend_line_down"
28
28
+
K = "extend_line_up"
29
29
+
L = "extend_char_right"
30
30
+
E = "extend_next_word_end"
31
31
+
W = "extend_next_word_start"
32
32
+
B = "extend_prev_word_start"
33
33
+
T = "extend_till_char"
34
34
+
F = "extend_next_char"
35
35
+
25
36
[keys.normal.space]
26
37
o = "file_picker_in_current_buffer_directory"
27
38
28
39
[keys.normal.space.u]
29
40
s = "@mip<A-s>:sort<ret>;,"
41
41
+
f = ":format"
30
42
31
43
[keys.normal.space.t]
32
44
f = ":toggle auto-format"