aboutsummaryrefslogtreecommitdiffstats
path: root/.config/helix/config.toml
blob: b0d0c581470ca4f4c5d8b7eb077668a265a8eed7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
theme = "onedark"

[editor]
true-color = true
line-number = "relative"
shell = ["zsh", "-c"]
text-width = 120

[editor.cursor-shape]
insert = "bar"

[editor.soft-wrap]
enable = true

[editor.statusline]
left = ["version-control", "mode", "spinner"]
center = ["file-name"]
right = ["diagnostics", "selections", "position", "file-encoding", "file-line-ending", "file-type"]
separator = "│"
mode.normal = "NORMAL"
mode.insert = "INSERT"
mode.select = "SELECT"

[editor.lsp]
display-messages = true

[editor.whitespace.render]
space = "all"
tab = "all"
newline = "none"

[editor.whitespace.characters]
space = "·"
nbsp = "⍽"
tab = "→"
newline = "⏎"
tabpad = "·" # Tabs will look like "→···" (depending on tab width)