dotfiles/nvim/lua/plugins/conform.lua
henryEto 7c9e23beb3 ??
2025-08-30 11:33:00 -06:00

16 lines
297 B
Lua
Executable File

return {
"stevearc/conform.nvim",
opts = {
formatters_by_ft = {
go = { "goimports", "gofumpt", lsp_format = "fallback" },
lua = { "stylua" },
python = { "isort", "black" },
bash = { "beautysh" },
},
format_on_save = {
timeout_ms = 500,
lsp_format = "falback",
},
},
}