From e8d166ad8c0a723d0bbc5bd516cdee87257fdc70 Mon Sep 17 00:00:00 2001 From: gwbeip Date: Sun, 14 Jun 2026 12:42:14 +0800 Subject: [PATCH] feat(helix): add auto-format, indent-guides, cursor-shape, and file-picker config --- helix/config.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/helix/config.toml b/helix/config.toml index 78de520..cc16d11 100644 --- a/helix/config.toml +++ b/helix/config.toml @@ -6,6 +6,14 @@ cursorline = true cursorcolumn = true default-yank-register = "+" continue-comments = true +auto-format = true +trim-trailing-whitespace = true +insert-final-newline = true +scrolloff = 5 +[editor.cursor-shape] +normal = "block" +insert = "bar" +select = "underline" [editor.statusline] left = ["mode", "spinner", "read-only-indicator", "file-modification-indicator", "version-control"] @@ -17,3 +25,12 @@ mode.insert = "INSERT" mode.select = "SELECT" diagnostics = ["warning", "error"] workspace-diagnostics = ["warning", "error"] + +[editor.indent-guides] +render = true +character = "╎" +skip-level = 1 + +[editor.file-picker] +hidden = false +parents = false