update conform config to be able to toggle it on or off

This commit is contained in:
Salar Rahmanian 2024-03-30 21:47:40 -07:00
parent 20abfd7ad7
commit 97b02badad

View file

@ -3,22 +3,43 @@ return {
config = function() config = function()
require("conform").setup({ require("conform").setup({
formatters_by_ft = { formatters_by_ft = {
lua = { "stylua" }, lua = { "stylua" },
python = function(bufnr) python = function(bufnr)
if require("conform").get_formatter_info("ruff_format", bufnr).available then if require("conform").get_formatter_info("ruff_format", bufnr).available then
return { "ruff_fix", "ruff_format" } return { "ruff_fix", "ruff_format" }
else else
return { "isort", "black", "flake8" } return { "isort", "black", "flake8" }
end end
end, end,
scala = { "scalafmt" }, scala = { "scalafmt" },
swift = { "swift_format" }, swift = { "swift_format" },
["*"] = { "trim_whitespace", "trim_newlines" }, ["*"] = { "trim_whitespace", "trim_newlines" },
}, },
format_on_save = { format_on_save = function(bufnr)
timeout_ms = 500, -- Disable with a global or buffer-local variable
lsp_fallback = true, if vim.g.disable_autoformat or vim.b[bufnr].disable_autoformat then
}, return
end
return { timeout_ms = 500, lsp_fallback = true }
end,
})
vim.api.nvim_create_user_command("FormatDisable", function(args)
if args.bang then
-- FormatDisable! will disable formatting just for this buffer
vim.b.disable_autoformat = true
else
vim.g.disable_autoformat = true
end
end, {
desc = "Disable autoformat-on-save",
bang = true,
})
vim.api.nvim_create_user_command("FormatEnable", function()
vim.b.disable_autoformat = false
vim.g.disable_autoformat = false
end, {
desc = "Re-enable autoformat-on-save",
}) })
end, end,
} }