return { "stevearc/conform.nvim", event = "VeryLazy", opts = { -- See aviable formatters in: https://github.com/stevearc/conform.nvim#formatters -- Formatters can be installed by mason formatters_by_ft = { -- Conform will run multiple formatters sequentially lua = { "stylua" }, python = { "black" }, -- Use a sub-list to run only the first available formatter javascript = { { "prettierd", "prettier" } }, typescript = { { "prettierd", "prettier" } }, javascriptreact = { { "prettierd", "prettier" } }, typescriptreact = { { "prettierd", "prettier" } }, -- Use the "_" filetype to run formatters on filetypes that don't -- have other formatters configured. ["_"] = { "trim_whitespace" }, }, format_on_save = function(bufnr) -- Disable with a global or buffer-local variable if vim.g.disable_autoformat or vim.b[bufnr].disable_autoformat then return end return { timeout_ms = 500, lsp_fallback = true } end, }, config = function(_, opts) require("conform").setup(opts) local function toggleAutoFormat() -- to make this global, change b to g if vim.b.disable_autoformat == nil then vim.b.disable_autoformat = true return end vim.b.disable_autoformat = not vim.b.disable_autoformat end MAP("n", "uf", toggleAutoFormat, "Toggle auto format") end, }