.dotfiles/linux/.config/nvim/lua/plugins/conform.lua
2024-01-03 13:34:39 -05:00

16 lines
381 B
Lua

return {
'stevearc/conform.nvim',
opts = {
formatters_by_ft = {
lua = { "stylua" },
python = { "ruff_format", "ruff_fix" },
javascript = { "biome" },
typescript = { "biome" },
json = { "biome" },
jsx = { "biome" },
sh = { "shfmt" },
['*'] = { 'trim_whitespace', 'codespell' },
},
},
lazy = false,
}