blob: 76f7dca851ddca11108ddfe3d47ac500b52af43b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require("conform").setup({
formatters_by_ft = {
lua = { "stylua" },
html = { "prettier" },
},
format_on_save = {
-- These options will be passed to conform.format()
timeout_ms = 500,
lsp_format = "fallback",
},
})
|