1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00

nvim/lua/user/plugins/lang/html.lua: add html lsp

This commit is contained in:
Henrik Hautakoski 2025-05-13 23:01:00 +02:00
parent 681910f785
commit 359507e0dd

View file

@ -5,6 +5,16 @@ return {
ensure_installed = { "html" } ensure_installed = { "html" }
} }
}, },
{
"neovim/nvim-lspconfig",
opts = {
servers = {
html = {
filetypes = {"html", "templ", "blade" }
}
}
}
},
{ {
"windwp/nvim-ts-autotag", "windwp/nvim-ts-autotag",
optional = true, optional = true,