Files
neovim-config/lua/plugins/conform.lua
2026-06-28 15:20:20 +09:00

12 lines
313 B
Lua

return {
'stevearc/conform.nvim',
opts = {
formatters_by_ft = {
lua = { "stylua" },
python = { "isort", "black" },
rust = { "rustfmt", lsp_format = "fallback" },
javascript = { "prettierd", "prettier", stop_after_first = true },
},
},
}