blob: 1352ba053a669009fd2b843670911262cb5fccf1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
return {
{
"stevearc/conform.nvim",
opts = {
formatters_by_ft = {
lua = { "stylua" },
python = { "ruff_fix", "ruff_format", "ruff_organize_imports" },
sh = { "shfmt" }
},
format_on_save = { timeout_ms = 500, lsp_format = "fallback" },
},
},
}
|