1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-08-20 02:28:13 +02:00
dotfiles/nvim/lua/user/plugins/lang/html.lua

24 lines
462 B
Lua

local spec = require('user.utils.lang_spec')
return {
spec.treesitter("html"),
{
"neovim/nvim-lspconfig",
opts = {
servers = {
html = {
filetypes = {"html", "templ", "blade" }
}
}
}
},
{
"windwp/nvim-ts-autotag",
optional = true,
opts = {
filetypes = {
'html',
}
}
}
}