My dotfiles

helix: better keyboard shortcuts for selection

bitquabit.com 06036f72 c0b73200

verified
+13 -1
+13 -1
helix/config.toml
··· 10 10 11 11 [editor.whitespace] 12 12 render = "all" 13 - characters = { space = " ", tab = "▏", newline = "¬" } # still the way to make tabs distinguisable w/o noisy dots on every space 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 + # Who needs visual mode when you've got Kakoune 26 + H = "extend_char_left" 27 + J = "extend_line_down" 28 + K = "extend_line_up" 29 + L = "extend_char_right" 30 + E = "extend_next_word_end" 31 + W = "extend_next_word_start" 32 + B = "extend_prev_word_start" 33 + T = "extend_till_char" 34 + F = "extend_next_char" 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 + f = ":format" 30 42 31 43 [keys.normal.space.t] 32 44 f = ":toggle auto-format"