Skip to content

Instantly share code, notes, and snippets.

@faustman
Created April 1, 2025 20:51
Show Gist options
  • Save faustman/51698074bad14d8d34619c190dab463e to your computer and use it in GitHub Desktop.
Save faustman/51698074bad14d8d34619c190dab463e to your computer and use it in GitHub Desktop.
LazyVim templ plugin
-- .config/nvim/lua/plugins/templ.lua
return {
{
"stevearc/conform.nvim",
opts = {
formatters_by_ft = {
templ = { "templ" },
},
},
},
{
"williamboman/mason.nvim",
opts = function(_, opts)
vim.list_extend(opts.ensure_installed, {
"templ",
})
end,
},
{
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
vim.list_extend(opts.ensure_installed, {
"templ",
})
end,
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment