summaryrefslogtreecommitdiff
path: root/helix/config.toml
diff options
context:
space:
mode:
authorpolwex <polwex@sortug.com>2024-10-06 13:12:46 +0000
committerpolwex <polwex@sortug.com>2024-10-06 13:12:46 +0000
commit7971835303f1d73272e7b2170ecd3f2eb5680b40 (patch)
tree97ce941eb635aa779af00729c3976afc6fece0f8 /helix/config.toml
parent8d6ba07563abc02b498d31307eecd7463ce65e39 (diff)
s15
Diffstat (limited to 'helix/config.toml')
-rw-r--r--helix/config.toml43
1 files changed, 43 insertions, 0 deletions
diff --git a/helix/config.toml b/helix/config.toml
new file mode 100644
index 0000000..1087fba
--- /dev/null
+++ b/helix/config.toml
@@ -0,0 +1,43 @@
+theme = "onedark"
+
+[editor]
+line-number = "relative"
+cursorline = true
+cursorcolumn = true
+idle-timeout = 800
+auto-format = true
+
+[editor.lsp]
+display-inlay-hints = true
+display-messages = true
+
+[editor.indent-guides]
+render = true
+character = "▏" # Some characters that work well: "▏", "┆", "┊", "⸽"
+skip-levels = 1
+
+[editor.cursor-shape]
+insert = "bar"
+normal = "block"
+select = "underline"
+
+[editor.file-picker]
+hidden = false
+
+[editor.soft-wrap]
+enable = true
+
+[editor.whitespace.render]
+tab = "all"
+newline = "none"
+
+[editor.whitespace.characters]
+tab = "→"
+newline = "⏎"
+
+[keys.normal]
+S-left = "jump_view_left"
+S-right = "jump_view_right"
+A-left = "swap_view_left"
+A-right = "swap_view_right"
+C-right = "toggle_comments"