dotfiles.git

commit 7125ee99dd241b0682b419bb26413a99b3e489af

Author: Adam <git@apiote.xyz>

add helix

 .config/helix/config.toml | 21 +++++++++++++++++++++
 .config/helix/languages.toml | 8 ++++++++


diff --git a/.config/helix/config.toml b/.config/helix/config.toml
new file mode 100644
index 0000000000000000000000000000000000000000..13afcdd640b945e685935034bd8beb709eb4e1e5
--- /dev/null
+++ b/.config/helix/config.toml
@@ -0,0 +1,21 @@
+theme = "ayu_dark"
+
+[editor]
+rulers = [80, 120]
+
+[editor.whitespace.render]
+nbsp = "all"
+
+[editor.indent-guides]
+render = true
+
+[editor.soft-wrap]
+enable = true
+
+[editor.statusline]
+left = ["file-name", "file-type", "file-modification-indicator"]
+center = ["spinner"]
+right = ["mode", "version-control", "diagnostics", "position"]
+mode.normal = ""
+mode.insert = "I"
+mode.select = "S"




diff --git a/.config/helix/languages.toml b/.config/helix/languages.toml
new file mode 100644
index 0000000000000000000000000000000000000000..aae9c68a31847ac691360860d635080f48643b25
--- /dev/null
+++ b/.config/helix/languages.toml
@@ -0,0 +1,8 @@
+[[language]]
+name = "bare"
+scope = "source.bare"
+injection-regex = "bare"
+file-types = ["bare"]
+roots = []
+comment-token = "#"
+indent = { tab-width = 2, unit = "\t" }