-
Notifications
You must be signed in to change notification settings - Fork 34.3k
ltex-ls-plus settings are not passed to LSP-Server #1525
New issue
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
Comments
I don't think any of my configs set in server are being read. I think the recent Mason update has changed something.. |
Yeah, even the default enabled lua_ls settings aren't overriden. |
You can call for k, v in pairs(servers) do
vim.lsp.config(k, v)
end |
thank you very much, ill have a look |
Pull request #1475 focuses on addressing this issue. In comment #1475 (comment), it’s mentioned that mason-lspconfig 2.0 removed You can try using the native LSP method introduced in Neovim 0.11 to start the server: -- You can use these calling outside of any setup {} block.
vim.lsp.config(server_name, config)
vim.lsp.enable(server_name) If you’re also keeping the |
my quick fix is to pin mason to v1 until PR #1475 is merged { 'mason-org/mason.nvim', opts = {}, version = '^1.0.0' },
{ 'mason-org/mason-lspconfig.nvim', version = '^1.0.0' }, Make sure to run |
Hello guys, i dont know if i am right here. i tried to setup the ltex_plus LSP with a different language as shown above.
i just want to set the language for *.tx files to german because i have multiple tex files in one project. for some reason the settings are not passed to the LSP. can someone help me plz?
The text was updated successfully, but these errors were encountered: