summaryrefslogtreecommitdiff
path: root/helix/config.toml
blob: 1087fba658fbe58ee731a211ff887a096e4f09aa (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
38
39
40
41
42
43
theme = "onedark"

[editor]
line-number = "relative"
cursorline = true
cursorcolumn = true
idle-timeout = 800
auto-format = true

[editor.lsp]
display-inlay-hints = true
display-messages = true

[editor.indent-guides]
render = true
character = "▏" # Some characters that work well: "▏", "┆", "┊", "⸽"
skip-levels = 1

[editor.cursor-shape]
insert = "bar"
normal = "block"
select = "underline"

[editor.file-picker]
hidden = false

[editor.soft-wrap]
enable = true

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

[editor.whitespace.characters]
tab = "→"
newline = "⏎"

[keys.normal]
S-left = "jump_view_left"
S-right = "jump_view_right"
A-left = "swap_view_left"
A-right = "swap_view_right"
C-right = "toggle_comments"