-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelix_config.toml
75 lines (62 loc) · 1.51 KB
/
helix_config.toml
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
theme = "mytheme"
[editor]
line-number = "relative"
cursorline = true
mouse = true
bufferline = "always"
end-of-line-diagnostics = "hint"
auto-completion = true
completion-replace = true
preview-completion-insert = false
path-completion = true
completion-timeout = 1000
auto-format = true
auto-info = true
[editor.file-picker]
git-ignore = false
ignore = false
[editor.inline-diagnostics]
cursor-line = "warning"
[editor.cursor-shape]
insert = "underline"
normal = "block"
select = "bar"
[editor.statusline]
left = ["mode", "total-line-numbers", "position", "version-control"]
center = ["primary-selection-length", "read-only-indicator", "file-name", "file-modification-indicator"]
right = ["spinner", "diagnostics", "workspace-diagnostics", "register", "file-type"]
separator = "│"
mode.normal = "NORMAL"
mode.insert = "INSERT"
mode.select = "SELECT"
[editor.auto-pairs]
'(' = ')'
'{' = '}'
'[' = ']'
'"' = '"'
'`' = '`'
'<' = '>'
[editor.auto-save]
focus-lost = true
[editor.lsp]
display-progress-messages = true
auto-signature-help = true
display-inlay-hints = false
display-signature-help-docs = true
snippets = true
goto-reference-include-declaration = true
[editor.indent-guides]
render = true
skip-levels = 1
[editor.gutters]
layout = ["diagnostics", "spacer", "line-numbers", "spacer", "diff"]
[keys.normal]
tab = "move_parent_node_end"
S-tab = "move_parent_node_start"
C-s = ":w"
[keys.insert]
S-tab = "move_parent_node_start"
C-j = "normal_mode"
[keys.select]
tab = "extend_parent_node_end"
S-tab = "extend_parent_node_start"