this repo has no description

chore: pumped up helix statusline

+15 -1
+15 -1
.config/helix/config.toml
··· 27 max-indent-retain = 0 28 # wrap-indicator = "" # set wrap-indicator to "" to hide it 29 30 [keys.normal] 31 g = { a = "code_action" } # Maps `ga` to show possible code actions 32 "ret" = ["move_line_down", "goto_first_nonwhitespace"] # Maps the enter key to move to start of next line ··· 39 40 [keys.insert] 41 # j = { k = "normal_mode" } # Maps `jk` to exit insert mode 42 -
··· 27 max-indent-retain = 0 28 # wrap-indicator = "" # set wrap-indicator to "" to hide it 29 30 + [editor.statusline] 31 + left = ["mode", "spinner", "version-control"] 32 + center = ["file-name"] 33 + right = [ "diagnostics", 34 + "selections", 35 + "position", 36 + "file-encoding", 37 + "file-line-ending", 38 + "file-type", 39 + ] 40 + separator = "│" 41 + mode.normal = "NORMAL" 42 + mode.insert = "INSERT" 43 + mode.select = "SELECT" 44 + 45 [keys.normal] 46 g = { a = "code_action" } # Maps `ga` to show possible code actions 47 "ret" = ["move_line_down", "goto_first_nonwhitespace"] # Maps the enter key to move to start of next line ··· 54 55 [keys.insert] 56 # j = { k = "normal_mode" } # Maps `jk` to exit insert mode