Files
dotfiles/nvim/lua/plugins/conform.lua
2026-03-11 10:06:28 +03:00

16 lines
340 B
Lua

-- https://github.com/stevearc/conform.nvim
return {
"stevearc/conform.nvim",
opts = {
formatters_by_ft = {
lua = { "stylua" },
yaml = { "prettierd", "prettier", stop_after_first = true },
},
format_on_save = {
-- These options will be passed to conform.format()
timeout_ms = 500,
lsp_format = "fallback",
},
},
}