Reputation: 9
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):
I've tried adding an ORM extension plugin, but not getting any results.
Upvotes: -1
Views: 384
Reputation: 1
use prisma syntax highlighting extension to resolve your text white colour problem
Upvotes: 0
Reputation: 9
"Prisma ORM" plugin (from webstorm plugins marketplace) re-install helped!
Upvotes: 0