mirror of
https://github.com/pnx/dotfiles
synced 2026-08-20 02:28:13 +02:00
24 lines
462 B
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',
|
|
}
|
|
}
|
|
}
|
|
}
|