diff options
Diffstat (limited to '.helix/languages.toml')
-rw-r--r-- | .helix/languages.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.helix/languages.toml b/.helix/languages.toml new file mode 100644 index 0000000..d5eb182 --- /dev/null +++ b/.helix/languages.toml @@ -0,0 +1,10 @@ +[[language]] +name = "rust" +config = { cargo.features = "all" } +language-server.command = "rust-analyzer" +language-server.environment = { "DATABASE_URL" = "postgres://pinussy:pinussy@localhost/pinussy" } +file-types = ["rs", "html"] + +[[language]] +name = "html" +auto-format = false |