summaryrefslogtreecommitdiff
path: root/after/plugin/conform.lua
blob: 13961b6252eb92079e9f85fd293348aa2c3e0fa8 (plain)
1
2
3
4
5
6
7
8
9
10
require("conform").setup({
	formatters_by_ft = {
		lua = { "stylua" },
	},
	format_on_save = {
		-- These options will be passed to conform.format()
		timeout_ms = 500,
		lsp_format = "fallback",
	},
})