Files
nvim/lua/plugins/conform.lua

25 lines
567 B
Lua
Raw Normal View History

2025-11-20 11:52:01 +08:00
return {
"stevearc/conform.nvim",
opts = {
formatters_by_ft = {
xml = { "xmlformatter" },
json = { "prettier" },
cfg = { "prettier" },
},
formatters = {
xmlformatter = {
command = "xmlformat",
args = {
"--indent", "4", "-"
},
stdin = true,
},
prettier = {
prepend_args = {
"--tab-width", "4"
}
}
}
},
}