Files
lazy_config/lua/plugins/conform.lua
2025-05-08 12:58:10 -04:00

15 lines
255 B
Lua

return {
"stevearc/conform.nvim",
opts = {
formatters_by_ft = {
-- python = { "ruff" },
python = { "black" },
javascript = { "biome" },
go = {'goimports', 'gofumpt'}
},
},
dependencies = {
"mason.nvim",
},
}