Fork of zed-extensions/purescript
  • Rust 55.9%
  • Tree-sitter Query 44.1%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
zed-zippy[bot] d04b93621e
Update CI workflows to 3183c04 (#14)
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:56:12 +00:00
.github/workflows Update CI workflows to 3183c04 (#14) 2026-03-25 18:56:12 +00:00
languages/purescript Add syntax highlighting for character literals in Haskell, PureScript, and Zig (zed-industries/zed#22609) 2025-01-03 20:51:43 +00:00
src Add support to pass arguments and environment variables (#7) 2026-01-01 16:39:15 +00:00
.gitignore Apply post-extraction changes 2025-03-12 14:27:13 -04:00
Cargo.lock Bump version to 0.1.3 (#8) 2026-01-01 17:41:50 +01:00
Cargo.toml Bump version to 0.1.3 (#8) 2026-01-01 17:41:50 +01:00
extension.toml Bump version to 0.1.3 (#8) 2026-01-01 17:41:50 +01:00
LICENSE Apply post-extraction changes 2025-03-12 14:27:13 -04:00
README.md Add support to pass arguments and environment variables (#7) 2026-01-01 16:39:15 +00:00

Zed PureScript

A PureScript extension for Zed.

Configuration

Environment Variables

You can specify arguments as well as environment variables to pass to the language server by configuring the lsp settings in your Zed settings. This can be helpful for Nix setups or other environments where you need to customize the PATH or other variables so that the language server can find the purescript binary to invoke for the LSP support.

Example configuration in your settings.json:

{
    "lsp": {
        "purescript-language-server": {
            "binary": {
                "env": {
                    "PATH": "/nix/store/gw58kr741a9ddmv3xn47llc7i07jbbvr-purescript-0.15.15/bin"
                }
            }
        }
    }
}

Development

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