This PR extracts Prisma support into an extension and removes the built-in Prisma support from Zed. Release Notes: - Removed built-in support for Prisma, in favor of making it available as an extension. The Prisma extension will be suggested for download when you open a `.prisma` file.
10 lines
286 B
TOML
10 lines
286 B
TOML
name = "Prisma"
|
|
grammar = "prisma"
|
|
path_suffixes = ["prisma"]
|
|
line_comments = ["// "]
|
|
brackets = [
|
|
{ start = "{", end = "}", close = true, newline = true },
|
|
{ start = "[", end = "]", close = true, newline = true },
|
|
{ start = "(", end = ")", close = true, newline = true }
|
|
]
|