Files
nvchad-starter/lua/configs/conform.lua
2025-10-25 13:06:43 +07:00

20 lines
343 B
Lua

local options = {
formatters_by_ft = {
lua = { "stylua" },
javascript = { "prettier" },
css = { "prettier" },
html = { "prettier" },
sh = { "shfmt" },
},
-- format_on_save = {
-- -- These options will be passed to conform.format()
-- timeout_ms = 500,
-- lsp_fallback = true,
-- },
}
return options