sqruff lsp with helix editor #1784
Answered
by
dionysiusmarquis
dionysiusmarquis
asked this question in
Q&A
-
Hey, I tried to use sqruff lsp with helix: # .helix/languages.toml
[language-server.sqruff]
command = "sqruff"
args = ["lsp"]
[[language]]
name = "sql"
language-servers = ["sqruff"] The problem is that the output from the lsp does not match the output of
I also tried to provide the config file via Is there anything i'm missing? |
Beta Was this translation helpful? Give feedback.
Answered by
dionysiusmarquis
Jul 12, 2025
Replies: 1 comment
-
I found what I was missing: [[language]]
name = "sql"
language-servers = ["sqruff"]
+ roots = [".sqruff"] seems to be running now. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
dionysiusmarquis
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I found what I was missing:
[[language]] name = "sql" language-servers = ["sqruff"] + roots = [".sqruff"]
seems to be running now.