ZIm/docs/src/languages/jsonnet.md
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

747 B

Jsonnet

Jsonnet language support in Zed is provided by the community-maintained Jsonnet extension.

Configuration

Workspace configuration options can be passed to the language server via the lsp settings of the settings.json.

The following example enables support for resolving tanka import paths in jsonnet-language-server:

{
  "lsp": {
    "jsonnet-language-server": {
      "settings": {
        "resolve_paths_with_tanka": true
      }
    }
  }
}