Add configuration for Helix editor

This commit is contained in:
2025-09-11 16:53:04 +02:00
committed by GitHub
parent 4b2e261737
commit d462721bb8

22
helix/config.toml Normal file
View File

@@ -0,0 +1,22 @@
theme = "focus_nova"
[editor]
line-number = "relative"
cursorline = true
color-modes = true
[editor.cursor-shape]
insert = "bar"
normal = "block"
select = "underline"
[editor.indent-guides]
render = true
[keys.normal]
C-right = "move_next_word_start"
C-left = "move_prev_word_end"
[keys.insert]
C-right = "move_next_word_start"
C-left = "move_prev_word_end"