-
Notifications
You must be signed in to change notification settings - Fork 0
/
helix.toml
50 lines (41 loc) · 1015 Bytes
/
helix.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
theme = "nord"
[editor]
line-number = 'relative'
cursorline = true
bufferline = 'multiple'
[editor.cursor-shape]
insert = 'bar'
normal = 'block'
select = 'underline'
[editor.file-picker]
hidden = false
# shell = ["zsh"]
[editor.statusline]
left = ["mode", "spinner", "total-line-numbers", "file-modification-indicator", "file-name"]
center = ["version-control"]
right = ["diagnostics", "position", "position-percentage", "selections", "file-encoding", "file-line-ending", "file-encoding", "file-type"]
separator = "│"
[editor.lsp]
display-messages = true
display-inlay-hints = true
[editor.whitespace]
render = 'none'
[editor.indent-guides]
render = true
[editor.soft-wrap]
enable = true
[keys.normal]
C-A-q = ":theme cyan_light"
C-A-w = ":theme nord"
C-A-o = ":config-open"
C-A-r = ":config-reload"
C-A-h = ":buffer-previous"
C-A-l = ":buffer-next"
A-w = ":buffer-close"
C-s = ":w"
C-A-s = ":write-all"
C-A-x = ":quit-all"
C-q = ":quit"
G = "goto_file_end"
R = "goto_file_start"
X = "extend_line_above"