.dotfiles/linux/.config/nvim/lua/plugins/conform.lua
2024-01-06 00:18:59 -05:00

21 lines
513 B
Lua

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