This commit is contained in:
mightypanders 2023-04-11 13:34:26 +02:00
parent 61292478ba
commit 31bff1d28f

View File

@ -88,6 +88,22 @@ require('mason-lspconfig').setup_handlers {
}
}
end,
['html'] = function()
require('lspconfig')['html'].setup {
on_attach = on_attach,
flags = lsp_flags,
cmd = { "html-languageserver", "--stdio" },
filetypes = { "html" },
init_options = {
configurationSection = { "html", "css", "javascript" },
embeddedLanguages = {
css = true,
javascript = true
}
},
settings = {}
}
end,
['yamlls'] = function()
require('lspconfig')["yamlls"].setup {
on_attach = on_attach,