dotfiles

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

config.toml (485B)


      1 theme = "everforest_light"
      2 
      3 [editor]
      4 cursorline = true
      5 color-modes = true
      6 
      7 [keys.normal]
      8 ";" = "command_mode"
      9 ":" = "collapse_selection"
     10 
     11 # Muscle memory
     12 "{" = ["goto_prev_paragraph", "collapse_selection"]
     13 "}" = ["goto_next_paragraph", "collapse_selection"]
     14 0 = "goto_line_start"
     15 "$" = "goto_line_end"
     16 "^" = "goto_first_nonwhitespace"
     17 G = "goto_file_end"
     18 "%" = "match_brackets"
     19 
     20 [keys.select]
     21 0 = "goto_line_start"
     22 "$" = "goto_line_end"
     23 ";" = "command_mode"
     24 ":" = "collapse_selection"