dotfiles/nvim/lua/plugins/conform.lua

24 lines
792 B
Lua
Raw Normal View History

2025-02-18 21:28:13 +00:00
return {
'stevearc/conform.nvim',
event = { "BufWritePre" },
cmd = { "ConformInfo" },
opts = {
formatters_by_ft = {
javascript = { "prettierd", stop_after_first = true },
typescript = { "prettierd", stop_after_first = true },
typescriptreact = { "prettierd", stop_after_first = true },
svelte = { "prettierd", stop_after_first = true },
php = { "pint" }
},
2025-04-24 12:34:12 +00:00
format_on_save = function(bufnr)
if vim.g.disable_autoformat or vim.b[bufnr].disable_autoformat then
return
end
return { timeout_ms = 500, lsp_format = "fallback" }
end,
2025-02-18 21:28:13 +00:00
},
init = function()
vim.o.formatexpr = "v:lua.require'conform'.formatexpr()"
end,
}