summaryrefslogtreecommitdiffstats
path: root/helix/.config/helix/languages.toml
diff options
context:
space:
mode:
Diffstat (limited to 'helix/.config/helix/languages.toml')
-rw-r--r--helix/.config/helix/languages.toml11
1 files changed, 7 insertions, 4 deletions
diff --git a/helix/.config/helix/languages.toml b/helix/.config/helix/languages.toml
index ff9e656..7502b27 100644
--- a/helix/.config/helix/languages.toml
+++ b/helix/.config/helix/languages.toml
@@ -1,10 +1,13 @@
-[[language]]
-name = "rust"
+[language-server.rust-analyzer]
config = { checkOnSave = { command = "clippy" }, cargo = { allFeatures = true }, diagnostics = { disabled = ["inactive-code"] } }
[[language]]
name = "python"
-language-server = { command = "pyright-langserver", args = ["--stdio"] }
-config = {}
+language-servers = ["pyright"]
formatter = { command = "black", args = ["--target-version=py311", "--quiet", "-"] }
auto-format = true
+
+[language-server.pyright]
+command = "pyright-langserver"
+args = ["--stdio"]
+config = {}