Ltex-ls LSP won't install #1728
Answered
by
ilias777
jacopoaltieri
asked this question in
Q&A
-
Greetings. I have a neovim-lua configuration with mason as my LSP provider. In my mason.lua file i correctly have
|
Beta Was this translation helpful? Give feedback.
Answered by
ilias777
Jun 8, 2024
Replies: 1 comment
-
Do you add the ltex language server in nvim-lspconfig? Make sure you have in your lsp config file this: lspconfig.ltex.setup({
-- ltex settings
}) Look here → nvim-lspconfig quickstart And make sure you have
Look here → mason-lspconfig setup |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jacopoaltieri
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do you add the ltex language server in nvim-lspconfig?
Make sure you have in your lsp config file this:
Look here → nvim-lspconfig quickstart
and here → server configuration for ltex
And make sure you have
mason.nvim
,mason-lspconfig.nvim
andnvim-lspconfig
in this order in your lspconfig file:mason.nvim
:require('mason').setup({ -- your settigns })
mason-lspconfig
:require('mason-lspconfig').setup({ -- your settings })
nvim-lspconfig
:lspconfig.ltex.setup({ -- your settings })
Look here → mason-lspconfig setup