17 lines
339 B
Lua
17 lines
339 B
Lua
return {
|
|
formatters_by_ft = {
|
|
lua = { "stylua" },
|
|
python = { "black" },
|
|
css = { "prettier" },
|
|
html = { "prettier" },
|
|
jsonc = { "prettier" },
|
|
go = { "golines" },
|
|
},
|
|
|
|
-- format_on_save = {
|
|
-- -- These options will be passed to conform.format()
|
|
-- timeout_ms = 500,
|
|
-- lsp_fallback = true,
|
|
-- },
|
|
}
|