feat(neovim): enable html language server
This commit is contained in:
parent
6ca22fe8b0
commit
0e73a2f068
1 changed files with 7 additions and 0 deletions
|
@ -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,
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue