16 lines
321 B
Lua
16 lines
321 B
Lua
return {
|
|
"stevearc/conform.nvim",
|
|
config = function()
|
|
require("conform").setup {
|
|
formatters_by_ft = {
|
|
lua = { "stylua" },
|
|
python = { "isort", "black", lsp_format = "fallback" }
|
|
},
|
|
format_on_save = {
|
|
timeout_ms = 500,
|
|
lsp_format = "fallback"
|
|
}
|
|
}
|
|
end
|
|
}
|