dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit fd06da17ffe1fd072cdf82166085b8cd03520d4a
parent a0551f8ecf39c6f712b1e4f95b82914a05e69d0a
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Tue,  9 Aug 2022 23:59:21 +0200

helix: some bindings

Diffstat:
Mhelix/config.toml | 11+++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/helix/config.toml b/helix/config.toml @@ -1,11 +1,18 @@ theme = "everforest_light" [keys.normal] -0 = "goto_line_start" -"$" = "goto_line_end" ";" = "command_mode" ":" = "collapse_selection" +# Muscle memory +"{" = ["goto_prev_paragraph", "collapse_selection"] +"}" = ["goto_next_paragraph", "collapse_selection"] +0 = "goto_line_start" +"$" = "goto_line_end" +"^" = "goto_first_nonwhitespace" +G = "goto_file_end" +"%" = "match_brackets" + [keys.select] 0 = "goto_line_start" "$" = "goto_line_end"