Files
nvim/lua/plugins/default/conform.lua
Zelong Kuang 9b8a7b07a1 Update
2025-10-11 17:18:56 +11:00

15 lines
320 B
Lua

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