Fork of zed-extensions/prisma
  • Rust 71.4%
  • Tree-sitter Query 28.6%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
zed-zippy[bot] 6cdb8fcf7c
Update CI workflows to 3183c04 (#44)
This PR updates the CI workflow files from the main Zed repository
based on the commit
zed-industries/zed@3183c04515

The update includes a new version of the extension CLI which adds
validation for semantic token rules for languages

Co-authored-by: zed-zippy[bot] <234243425+zed-zippy[bot]@users.noreply.github.com>
2026-03-25 18:55:48 +00:00
.github/workflows Update CI workflows to 3183c04 (#44) 2026-03-25 18:55:48 +00:00
languages/prisma chore: type highlighting support (#14) 2025-09-29 12:16:25 +02:00
src Use hotfixed version and fix boolean logic error (#34) 2025-12-18 21:18:44 +00:00
.gitignore Fix for missing enableDiagnostics (#9) 2025-05-23 16:19:11 -04:00
Cargo.lock Bump version to 0.1.8 (#35) 2025-12-18 21:21:51 +00:00
Cargo.toml Bump version to 0.1.8 (#35) 2025-12-18 21:21:51 +00:00
extension.toml Bump version to 0.1.8 (#35) 2025-12-18 21:21:51 +00:00
LICENSE Apply post-extraction changes 2025-01-30 13:22:57 -05:00
README.md Add option to pin prisma language server to v6 (#24) 2025-12-03 22:47:49 +01:00

Zed Prisma

A Prisma extension for Zed.

Development

To develop this extension, see the Developing Extensions section of the Zed docs.

Pin language server to Prisma v6

To pin the language server to Prisma v6, add the following configuration to your Zed settings:

"lsp": {
    "prisma-language-server": {
        "settings": {
            "prisma": {
                "pinToPrisma6": true
            }
        }
    }
}