Optional LSP #7298
-
Hey folks 👋 Helix has been my daily driver for several months now after a decade of (neo)vim and I'm a fan! I often have to switch between several Python projects/virtualenvs with different LSPs installed (e.g. project A with A simplified version of my current [[language]]
name = "python"
scope = "source.python"
language-servers = [
{ name = "pyright" },
{ name = "pylsp" },
]
[language-server.pyright]
command = "pyright-langserver"
args = ["--stdio"]
[language-server.pylsp]
command = "pylsp"
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can create the |
Beta Was this translation helpful? Give feedback.
You can create the
.helix/languages.toml
file inside every project directory. Its settings will be merged with the global configuration.