feat(neovim): enable html language server

This commit is contained in:
Michael Mandl 2022-08-04 07:47:58 +02:00
parent 6ca22fe8b0
commit 0e73a2f068
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7

View file

@ -120,3 +120,10 @@ lsp_lines.setup()
vim.diagnostic.config({
virtual_text = false,
})
-- setup html languageserver
lspconfig["html"].setup({
cmd = { "html-languageserver", "--stdio" },
on_attach = on_attach,
capabilities = capabilities,
})