Files
oak-gpui/docs/src/languages/nim.md
T
Marshall Bowers 3b3c379852 docs: Fix casing of "Tree-sitter" (#25427)
This PR fixes the casing of "Tree-sitter" in the docs.

It is "Tree-sitter", not "Tree Sitter" or "Tree-Sitter".

Release Notes:

- N/A
2025-02-23 15:30:10 +00:00

817 B

Nim

Nim language support in Zed is provided by the community-maintained Nim extension. Report issues to: https://github.com/foxoman/zed-nim/issues

Formatting

To use arnetheduck/nph as a formatter, follow the nph installation instructions and add this to your Zed settings.json:

  "languages": {
    "Nim": {
      "formatter": {
        "external": {
          "command": "nph",
          "arguments": ["-"]
        }
      }
    }
  }