mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 22:22:40 +00:00
24 lines
486 B
Lua
24 lines
486 B
Lua
return {
|
|
"stevearc/conform.nvim",
|
|
opts = {
|
|
formatters_by_ft = {
|
|
lua = { "stulua" },
|
|
markdown = {
|
|
"prettier",
|
|
prepend_args = {
|
|
"--print-width",
|
|
"100",
|
|
"--prose-wrap",
|
|
"always",
|
|
"--parser",
|
|
"markdown",
|
|
},
|
|
},
|
|
swift = { "swiftformat" },
|
|
-- ["*"] = {
|
|
-- require("formatter.filetypes.any").remove_trailing_whitespace,
|
|
-- },
|
|
},
|
|
},
|
|
}
|