dotfiles/.config/nvim/lua/lsp/servers/html.lua

18 lines
409 B
Lua
Raw Permalink Normal View History

return {
2023-04-03 09:19:12 -04:00
cmd = {vim.g.lsp_path .. "vscode-html-language-server", "--stdio"},
filetypes = {"html"},
on_attach = vim.g.lsp_on_attach,
handlers = vim.g.lsp_handler,
capabilities = vim.g.lsp_capabilities,
2023-04-03 09:19:12 -04:00
init_options = {
configurationSection = { "html", "css", "javascript" },
embeddedLanguages = {
css = true,
javascript = true
},
2023-04-03 09:19:12 -04:00
provideFormatter = true
},
}