mirror of
https://github.com/Dannecron/nvchad-starter.git
synced 2025-12-25 11:52:35 +03:00
20 lines
343 B
Lua
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
|