nvim/lsp/html.lua 246 B raw
1
return {
2
	cmd = {
3
		"vscode-html-language-server", "--stdio"
4
	},
5
	filetypes = {
6
		'html',
7
	},
8
	root_markers = {
9
		'index.js', 'index.html', 'styles.css', '.git' },
10
	single_file_support = true,
11
	log_level = vim.lsp.protocol.MessageType.Warning,
12
}