nvim-config/lua/configs/conform.lua

17 lines
288 B
Lua
Raw Normal View History

2024-04-08 11:26:41 +02:00
local options = {
formatters_by_ft = {
lua = { "stylua" },
2024-04-15 11:32:16 +02:00
bash = { "shfmt" },
sh = { "shfmt" },
2024-04-16 11:49:51 +02:00
markdown = { "markdownlint" },
2024-04-15 11:32:16 +02:00
yaml = { "yamlfmt" },
2024-04-08 11:26:41 +02:00
},
2024-04-15 11:32:16 +02:00
format_on_save = {
timeout_ms = 500,
lsp_fallback = true,
},
2024-04-08 11:26:41 +02:00
}
require("conform").setup(options)