19 lines
304 B
Lua
19 lines
304 B
Lua
return {
|
|
'stevearc/conform.nvim',
|
|
lazy = false,
|
|
opts = {
|
|
notify_on_error = true,
|
|
formatters_by_ft = {
|
|
templ = { "templ" },
|
|
},
|
|
format_on_save = {
|
|
lsp_fallback = true,
|
|
timeout_ms = 1500,
|
|
},
|
|
},
|
|
config = function(_, opts)
|
|
local plug = require('conform')
|
|
plug.setup(opts)
|
|
end,
|
|
}
|