Files
nvim/lua/plugins/default/conform.lua

14 lines
279 B
Lua
Raw Normal View History

2025-05-13 19:37:28 +10:00
return {
"stevearc/conform.nvim",
opts = {
formatters_by_ft = {
2025-10-22 14:20:19 +11:00
["json"] = { "jq" },
2025-05-13 19:37:28 +10:00
["jsonc"] = { "jq" },
["tex"] = { "latexindent" },
2025-10-22 14:20:19 +11:00
["toml"] = { "taplo" },
["markdown"] = { "prettierd", "cbfmt" },
["sh"] = { "shfmt" },
2025-05-13 19:37:28 +10:00
}
}
}