Helm

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

Setup

Enable Helm language for Helm files by editing your .gram/settings.jsonc 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.