.dotfiles/global/.config/nvim/lua/plugins/conform.lua
foozzi 2c1ccaffd1 Refactoring
- Added macos
2024-01-14 23:29:33 -05:00

22 lines
479 B
Lua

return {
"stevearc/conform.nvim",
opts = {
icon = "", --'▎',
formatters_by_ft = {
lua = { "stylua" },
python = { "ruff_format", "ruff_fix", "isort" },
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,
}