···27max-indent-retain = 0
28# wrap-indicator = "" # set wrap-indicator to "" to hide it
2900000000000000030[keys.normal]
31g = { 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
···3940[keys.insert]
41# j = { k = "normal_mode" } # Maps `jk` to exit insert mode
42-
···27max-indent-retain = 0
28# wrap-indicator = "" # set wrap-indicator to "" to hide it
2930+[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]
46g = { 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
···5455[keys.insert]
56# j = { k = "normal_mode" } # Maps `jk` to exit insert mode
0