prettier set up

This commit is contained in:
Thomas Smallwood 2025-12-05 13:13:42 +00:00
parent f98fc13247
commit f1dc92c1e3
No known key found for this signature in database

9
lua/plugins/conform.lua Normal file
View file

@ -0,0 +1,9 @@
return {
"stevearc/conform.nvim",
opts = {
formatters_by_ft = {
typescript = { "prettier" }, -- no Prettier for TS
typescriptreact = { "prettier" },
},
},
}