Add html language server configuration

This commit is contained in:
Sonny Bakker 2022-09-07 21:46:54 +02:00
parent e15156ecd7
commit 0837edb1fe

View file

@ -39,6 +39,12 @@ nvim_lsp.pyright.setup({
end
})
nvim_lsp.html.setup({
on_attach = on_attach,
capabilities = capabilities,
filetypes = { 'html', 'htmldjango' },
})
for _, lsp in ipairs(servers) do
nvim_lsp[lsp].setup {
on_attach = on_attach,