If you want to modify only the VSCode behavior for Prisma files while leaving other formats unchanged, update the settings specifically for Prisma.
In your settings.json add:
"[prisma]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "Prisma.prisma"
},