Files
lazy_config/lua/plugins/conform.lua
2026-01-10 16:11:53 -05:00

20 lines
347 B
Lua

return {
"stevearc/conform.nvim",
opts = {
lsp_formatting = false,
fallback = false,
formatters_by_ft = {
python = { "black" },
go = { "goimports", "gofumpt" },
xml = { "lemminx" },
ruby = { "rubocop" },
json = { "biome" },
css = { "biome" },
javascript = { "biome" },
},
},
dependencies = {
"mason.nvim",
},
}