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