summaryrefslogtreecommitdiff
path: root/.config/helix/languages.toml
diff options
context:
space:
mode:
Diffstat (limited to '.config/helix/languages.toml')
-rw-r--r--.config/helix/languages.toml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.config/helix/languages.toml b/.config/helix/languages.toml
new file mode 100644
index 0000000..d727f5f
--- /dev/null
+++ b/.config/helix/languages.toml
@@ -0,0 +1,14 @@
+[[language]]
+name = "rust"
+indent = { tab-width=4, unit="\t" }
+formatter = { command="rustfmt" }
+[language-server.rust-analyzer.config]
+check.command = "clippy"
+
+[[language]]
+name = "python"
+indent = { tab-width=8, unit="\t" }
+
+[[language]]
+name = "markdown"
+soft-wrap = { enable = true }