mirror of
https://codeberg.org/diginaut/dotfiles.git
synced 2026-02-04 06:40:25 +01:00
18 lines
290 B
Lua
18 lines
290 B
Lua
return {
|
|
"stevearc/conform.nvim",
|
|
opts = {
|
|
|
|
formatters_by_ft = {
|
|
sh = { "shfmt" },
|
|
bash = { "shfmt" },
|
|
},
|
|
|
|
-- format_on_save = {
|
|
-- -- These options will be passed to conform.format()
|
|
-- timeout_ms = 500,
|
|
-- lsp_fallback = true,
|
|
-- quiet = true,
|
|
-- },
|
|
},
|
|
}
|