-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelix.toml
More file actions
67 lines (55 loc) · 1.41 KB
/
helix.toml
File metadata and controls
67 lines (55 loc) · 1.41 KB
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
theme = "monokai_pro_machine"
[editor]
line-number = "relative"
bufferline = "multiple"
cursorline = true
color-modes = true
rulers = [100]
popup-border = "all"
soft-wrap.enable = true
search.smart-case = false
end-of-line-diagnostics = "hint"
[editor.inline-diagnostics]
cursor-line = "error"
[editor.lsp]
display-messages = true
[editor.file-picker]
# do not ignore hidden files
hidden = false
[editor.statusline]
left = ["mode", "spinner", "version-control", "file-name"]
[editor.indent-guides]
character = "╎"
render = true
[editor.cursor-shape]
normal = "block"
insert = "bar"
select = "underline"
[keys.normal.space]
left = "goto_previous_buffer"
right = "goto_next_buffer"
[keys.normal]
esc = ["collapse_selection", "keep_primary_selection"]
a = ["append_mode", "collapse_selection"]
X = "select_line_above"
G = "goto_file_end"
C-e = "scroll_down"
C-y = "scroll_up"
"K" = "hover"
"A-k" = "keep_selections"
0 = ["collapse_selection", "extend_to_line_start"]
"^" = ["collapse_selection", "extend_to_first_nonwhitespace"]
"$" = ["collapse_selection", "extend_to_line_end"]
V = ["select_mode", "extend_to_line_bounds"]
[keys.select]
C-e = "scroll_down"
C-y = "scroll_up"
X = "select_line_above"
0 = "goto_line_start"
"^" = "goto_first_nonwhitespace"
"$" = "goto_line_end"
G = "goto_file_end"
[keys.insert]
esc = ["normal_mode", "move_char_left"]
C-c = ["normal_mode", "move_char_left"]
j.k = ["normal_mode", "move_char_left"]