nvim-config/lua/configs/conform.lua

17 lines
288 B
Lua
Raw Normal View History

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