mustToKnowAnswer
mustToKnowAnswer

Reputation: 9

Support syntax scheme.prisma file by IDE

Why when create Prisma schema file, I have no code syntax support? I mean, after running the following command

npx prisma init --datasource-provider sqlite

I'm getting scheme.prisma file (and DATABASE_URL="file:./dev.db" - in .env file), but I can't use support suggestions actions. All text in the file have white color (without suggestions and syntax highlighting):

enter image description here

I've tried adding an ORM extension plugin, but not getting any results.

Upvotes: -1

Views: 384

Answers (3)

Awara Amini
Awara Amini

Reputation: 572

install Prisma extension for your VS Code.

Upvotes: 0

jai
jai

Reputation: 1

use prisma syntax highlighting extension to resolve your text white colour problem

Upvotes: 0

mustToKnowAnswer
mustToKnowAnswer

Reputation: 9

"Prisma ORM" plugin (from webstorm plugins marketplace) re-install helped!

Upvotes: 0

Related Questions