Files
oak-gpui/docs/src/languages/helm.md
T
Ben Kunkle abe1fd5e16 docs: Validate JSON snippets (settings, keymap, tasks, etc) (#40043)
Closes #ISSUE

Release Notes:

- N/A *or* Added/Fixed/Improved ...
2025-10-12 00:19:57 -04:00

737 B

Helm

Support for Helm in Zed is provided by the community-maintained Helm extension.

Setup

Enable Helm language for Helm files by editing your .zed/settings.json and adding:

  "file_types": {
    "Helm": [
      "**/templates/**/*.tpl",
      "**/templates/**/*.yaml",
      "**/templates/**/*.yml",
      "**/helmfile.d/**/*.yaml",
      "**/helmfile.d/**/*.yml",
      "**/values*.yaml"
    ]
  }

This will also mark values.yaml files as the type helm, since helm-ls supports this.