Files
dotfiles/helix/config.toml
2025-10-10 15:47:56 +02:00

43 lines
779 B
TOML

theme = "focus_nova"
[editor]
line-number = "relative"
cursorline = true
color-modes = true
auto-pairs = true
scrolloff = 3
rulers = [80, 120]
idle-timeout = 200
completion-trigger-len = 1
[editor.cursor-shape]
insert = "bar"
normal = "block"
select = "underline"
[editor.indent-guides]
render = true
character = "|"
skip-levels = 1
[editor.statusline]
left = ["mode", "spinner", "file-name"]
center = ["diagnostics"]
right = ["file-type", "position"]
[editor.lsp]
display-messages = true
auto-signature-help = true
display-inlay-hints = true
[keys.normal]
C-right = "move_next_word_start"
C-left = "move_prev_word_end"
C-s = ":w"
C-q = ":q"
[keys.insert]
C-right = "move_next_word_start"
C-left = "move_prev_word_end"
C-s = ":w"