From d462721bb853da8ae70c079ec3a5f64179b138a1 Mon Sep 17 00:00:00 2001 From: Francesco Date: Thu, 11 Sep 2025 16:53:04 +0200 Subject: [PATCH] Add configuration for Helix editor --- helix/config.toml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 helix/config.toml diff --git a/helix/config.toml b/helix/config.toml new file mode 100644 index 0000000..a4f521a --- /dev/null +++ b/helix/config.toml @@ -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"