nvim-config/lua/configs/conform.lua

17 lines
278 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" },
md = { "mdformat" },
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)