1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 11:24:55 +02:00
dotfiles/nvim/lua/config/conform.lua

13 lines
228 B
Lua

return {
format_options = {
async = true,
lsp_fallback = true,
},
notify_on_error = true,
formatters_by_ft = {
bash = { "shfmt" },
blade = { "blade-formatter" },
lua = { "stylua" },
["_"] = { "prettier" },
},
}