We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to override the zls version installed by Mason with the more recent one I built locally.
zls
First, I modified the file opened by :LspSettings zls to have
:LspSettings zls
{ "zls.path": "/path/to/zls" }
as is specified by the schema, but it did not have any effect and the Mason one was still used.
Being in LunarVim, I could workaround with this bit of config but I'm not sure it's correct/optimal
vim.list_extend(lvim.lsp.automatic_configuration.skipped_servers, { "zls" }) require("lvim.lsp.manager").setup("zls", { cmd = { "/path/to/zls" }, })
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to override the
zls
version installed by Mason with the more recent one I built locally.First, I modified the file opened by
:LspSettings zls
to haveas is specified by the schema, but it did not have any effect and the Mason one was still used.
Being in LunarVim, I could workaround with this bit of config but I'm not sure it's correct/optimal
The text was updated successfully, but these errors were encountered: