49 lines
1.5 KiB
Lua
49 lines
1.5 KiB
Lua
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" },
|
|
blade = { "blade-formatter" },
|
|
python = { "blue" },
|
|
-- Use a sub-list to run only the first available formatter
|
|
json = { { "prettierd", "prettier" } },
|
|
javascript = { { "prettierd", "prettier" } },
|
|
typescript = { { "prettierd", "prettier" } },
|
|
javascriptreact = { { "prettierd", "prettier" } },
|
|
typescriptreact = { { "prettierd", "prettier" } },
|
|
css = { { "prettierd", "prettier" } },
|
|
scss = { { "prettierd", "prettier" } },
|
|
html = { "prettierd" },
|
|
sh = { "shfmt" },
|
|
-- 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 = 2000, 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", "<leader>uf", toggleAutoFormat, "Toggle auto format")
|
|
end,
|
|
}
|