devbox/assets/helix/config.toml
2026-03-17 12:15:07 -07:00

48 lines
870 B
TOML

theme = "yo_dracula"
[editor]
rulers = [80, 100]
true-color = true
[editor.cursor-shape]
insert = "bar"
[editor.file-picker]
hidden = false
git-ignore = false
[editor.soft-wrap]
enable = true
[editor.statusline]
right = [
"diagnostics",
"selections",
"primary-selection-length",
"spacer",
"position",
"position-percentage",
]
[keys.normal]
"}" = "goto_next_paragraph"
"{" = "goto_prev_paragraph"
"y" = "yank_to_clipboard"
"d" = ["yank_to_clipboard", "delete_selection"]
"p" = "paste_clipboard_after"
"P" = "paste_clipboard_before"
[keys.select]
"}" = "goto_next_paragraph"
"{" = "goto_prev_paragraph"
"y" = "yank_to_clipboard"
"d" = ["yank_to_clipboard", "delete_selection"]
"p" = "paste_clipboard_after"
"P" = "paste_clipboard_before"
[keys.normal.space]
v = [":vs", "file_picker"]
s = [":sp", "file_picker"]
w = ":w"
q = ":q"
space = "rotate_view"