Skip to content

Commit

Permalink
helix: add deno lsp
Browse files Browse the repository at this point in the history
  • Loading branch information
branchvincent committed Nov 12, 2024
1 parent c88f511 commit 4e894b8
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .config/helix/languages.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
# TODO: add to helix
[language-server.ruff]
command = "ruff"
args = ["server"]
[language-server]
ruff = { command = "ruff", args = ["server"] }

[language-server.deno]
command = "deno"
args = ["lsp"]
config = { deno = { enable = true } }

[[language]]
name = "python"
language-servers = ["ruff", "pylsp"]
auto-format = true

[[language]]
name = "javascript"
language-servers = ["deno"]
auto-format = true

[[language]]
name = "typescript"
language-servers = ["deno"]
auto-format = true

0 comments on commit 4e894b8

Please sign in to comment.