-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.toml
46 lines (36 loc) · 994 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
45
# Helix editor config for EDToaster
# Meant to be symlinked at ~/.config/helix/config.toml for Linux/MacOS
# or at %AppData%\helix\config.toml
theme = "catppuccin_frappe"
[editor]
# Change line numbers to relative in non-insert mode
line-number = "relative"
bufferline = "multiple"
true-color = true
# Set default shell for pipe, sh, insert-output, etc.
shell = ["zsh", "-c"]
[keys.normal]
# Allow <esc> to collapse selection
esc = ["collapse_selection", "keep_primary_selection"]
# Unbind default movement keys and bind new ones
h = "no_op"
j = "no_op"
k = "move_char_left"
l = "move_line_down"
";" = "move_line_up"
"'" = "move_char_right"
[editor.cursor-shape]
insert = "bar"
normal = "block"
select = "underline"
[editor.file-picker]
hidden = false
[editor.lsp]
display-inlay-hints = true
[keys.normal.space]
m = ":toggle-option soft-wrap.enable"
z = [
"goto_first_nonwhitespace",
"extend_to_line_end",
":pipe-to xargs -d'\n' -I {} -- zellij r -f -- zsh -c '{}'"
]