nvim-config/lua/plugins/conform.lua
Walter Jenkins dd1d1bb6e9 working
2025-04-16 08:39:09 -05:00

17 lines
435 B
Lua

return {
{
"stevearc/conform.nvim",
config = function()
require("conform").setup({
formatters_by_ft = {
templ = { "templ", "prettier" }, -- Use templ first, then Prettier for embedded content
},
format_on_save = {
timeout_ms = 500,
lsp_fallback = true,
},
})
end,
event = { "BufReadPre", "BufNewFile" }, -- Load only when opening a file
}
}