summaryrefslogtreecommitdiffstats
path: root/helix/.config/helix/config.toml
blob: d0985caf0aa605500dd51e6f211b4ec8b929670e (plain) (blame)
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
theme = "vim_dark_high_contrast"

[editor]
gutters = ["diagnostics", "diff"]
auto-info = false
color-modes = true
true-color = true

[editor.soft-wrap]
enable = true

[editor.indent-guides]
render = true
character = "⸽"

[editor.lsp]
display-messages = true

[keys.normal]
tab = ":w"
"|" = ":q"
"\\" = "shell_pipe"

"C-d" = ":buffer-close"

"ret" = "goto_definition"
"backspace" = "jump_backward"

[keys.normal.g]
j = "goto_last_line"
k = "goto_file_start"

[keys.normal.space]
o = ":diffg"