tangled
alpha
login
or
join now
biscui.tech
/
dotfiles
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
chore: pumped up helix statusline
biscui.tech
2 years ago
988a9628
8f973019
+15
-1
1 changed file
expand all
collapse all
unified
split
.config
helix
config.toml
+15
-1
.config/helix/config.toml
···
27
27
max-indent-retain = 0
28
28
# wrap-indicator = "" # set wrap-indicator to "" to hide it
29
29
30
30
+
[editor.statusline]
31
31
+
left = ["mode", "spinner", "version-control"]
32
32
+
center = ["file-name"]
33
33
+
right = [ "diagnostics",
34
34
+
"selections",
35
35
+
"position",
36
36
+
"file-encoding",
37
37
+
"file-line-ending",
38
38
+
"file-type",
39
39
+
]
40
40
+
separator = "│"
41
41
+
mode.normal = "NORMAL"
42
42
+
mode.insert = "INSERT"
43
43
+
mode.select = "SELECT"
44
44
+
30
45
[keys.normal]
31
46
g = { a = "code_action" } # Maps `ga` to show possible code actions
32
47
"ret" = ["move_line_down", "goto_first_nonwhitespace"] # Maps the enter key to move to start of next line
···
39
54
40
55
[keys.insert]
41
56
# j = { k = "normal_mode" } # Maps `jk` to exit insert mode
42
42
-