feat(lsp): Make ltex automatically choose the correct language

This commit is contained in:
kalmenn 2024-09-13 19:20:22 +02:00
parent a50cb8c1b7
commit 442e0430b7
Signed by: kalmenn
GPG key ID: F500055C44BC3834

View file

@ -107,6 +107,16 @@ return {
}, },
}) })
end, end,
["ltex"] = function()
lspconfig.ltex.setup {
capabilities = capabilities,
settings = {
ltex = {
language = "auto",
},
},
}
end,
}, },
}) })
end, end,