16 lines
340 B
Lua
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",
|
|
},
|
|
},
|
|
}
|