Files
nvim/lua/plugins/default/conform.lua
Zelong Kuang e4013c2193 update
2025-10-22 14:20:19 +11:00

14 lines
279 B
Lua

return {
"stevearc/conform.nvim",
opts = {
formatters_by_ft = {
["json"] = { "jq" },
["jsonc"] = { "jq" },
["tex"] = { "latexindent" },
["toml"] = { "taplo" },
["markdown"] = { "prettierd", "cbfmt" },
["sh"] = { "shfmt" },
}
}
}