From 9e611b51aa910462d39d96d5fe84b91af560385d Mon Sep 17 00:00:00 2001 From: Fredrik Robertsen Date: Fri, 27 Mar 2026 09:20:21 +0100 Subject: [PATCH] create helix/config.toml --- dotfiles/.config/helix/config.toml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 dotfiles/.config/helix/config.toml diff --git a/dotfiles/.config/helix/config.toml b/dotfiles/.config/helix/config.toml new file mode 100644 index 0000000..9d95daf --- /dev/null +++ b/dotfiles/.config/helix/config.toml @@ -0,0 +1,30 @@ +theme = "kanagawa" + +[editor] +line-number = "relative" +auto-pairs = false +auto-completion = false +end-of-line-diagnostics = "hint" + +[editor.cursor-shape] +insert = "bar" +normal = "block" +select = "underline" + +[editor.lsp] +auto-signature-help = false + +[editor.whitespace.render] +space = "all" +tab = "all" +nbsp = "none" +nnbsp = "none" +newline = "none" + +[editor.indent-guides] +render = true +character = "╎" +skip-levels = 1 + +[editor.inline-diagnostics] +cursor-line = "warning"