return { "stevearc/conform.nvim", event = { "BufWritePre" }, cmd = { "ConformInfo" }, keys = { { -- Customize or remove this keymap to your liking "f", function() require("conform").format({ async = true, lsp_fallback = true }) end, mode = "", desc = "Format buffer", }, }, -- Everything in opts will be passed to setup() opts = { -- Define your formatters formatters_by_ft = { lua = { "stylua" }, fish = { "fish_indent" }, perl = { "perltidy" }, python = { "isort", "black" }, javascript = { { "prettierd", "prettier" } }, sh = { "shfmt" }, }, -- Set up format-on-save format_on_save = { timeout_ms = 3000, async = false, quit = false, lsp_fallback = true }, -- Customize formatters formatters = { shfmt = { prepend_args = { "-i", "2" }, }, }, }, init = function() -- If you want the formatexpr, here is the place to set it vim.o.formatexpr = "v:lua.require'conform'.formatexpr()" end, }