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

15 lines
320 B
Lua
Raw Normal View History

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