blob: f60124623983c5ab9af1e7136e2f546242fe3b1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
return {
cmd = { "vscode-html-language-server", "--stdio" },
filetypes = { "html" },
root_markers = { "package.json", ".git" },
single_file_support = true,
init_options = {
provideFormatter = true,
embeddedLanguages = { css = true, javascript = true },
configurationSection = { "html", "css", "javascript" },
},
}
|