-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
44 lines (36 loc) · 1021 Bytes
/
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
theme = "george"
[editor]
line-number = "relative"
bufferline = "multiple"
text-width = 100
rulers = [100]
[editor.statusline]
left = ["mode", "spinner", "version-control", "file-name"]
[editor.whitespace]
render = "all"
[editor.indent-guides]
render = true
character = "⸽" # Some characters that work well: "▏", "┆", "┊", "⸽"
skip-levels = 1
[editor.soft-wrap]
enable = true
[keys.insert]
up = "no_op"
down = "no_op"
left = "no_op"
right = "no_op"
pageup = "no_op"
pagedown = "no_op"
home = "no_op"
end = "no_op"
[keys.select]
X = ["select_line_above"]
x = ["select_line_below"]
C-k = [ "extend_to_line_bounds", "delete_selection", "move_line_up", "paste_before" ]
C-j = [ "extend_to_line_bounds", "delete_selection", "move_line_down", "paste_before" ]
[keys.normal]
X = ["select_line_above"]
x = ["select_line_below"]
ret = "command_mode"
C-j = ["extend_to_line_bounds", "delete_selection", "paste_after"]
C-k = ["extend_to_line_bounds", "delete_selection", "move_line_up", "paste_before"]