mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 06:12:34 +00:00
19 lines
395 B
Lua
19 lines
395 B
Lua
return {
|
|
"stevearc/conform.nvim",
|
|
opts = {
|
|
formatters_by_ft = {
|
|
lua = { "stulua" },
|
|
markdown = {
|
|
"prettier",
|
|
prepend_args = {
|
|
"--config", "~/.prettierrc.yaml"
|
|
},
|
|
},
|
|
swift = { "swiftformat" },
|
|
-- ["*"] = {
|
|
-- require("formatter.filetypes.any").remove_trailing_whitespace,
|
|
-- },
|
|
},
|
|
},
|
|
}
|