Skip to content

Commit

Permalink
docs: Add Helm extension docs (zed-industries#19095)
Browse files Browse the repository at this point in the history
Merge after this:
- zed-industries/extensions#746

Release Notes:

- N/A

---------

Co-authored-by: Peter Tripp <[email protected]>
Co-authored-by: Marshall Bowers <[email protected]>
  • Loading branch information
3 people authored and noaccOS committed Oct 19, 2024
1 parent 55e9771 commit 76d6a01
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
- [Go](./languages/go.md)
- [Groovy](./languages/groovy.md)
- [Haskell](./languages/haskell.md)
- [Helm](./languages/helm.md)
- [HTML](./languages/html.md)
- [Java](./languages/java.md)
- [JavaScript](./languages/javascript.md)
Expand Down
22 changes: 22 additions & 0 deletions docs/src/languages/helm.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Helm

Support for Helm in Zed is provided by the community-maintained [Helm extension](https://github.com/cabrinha/helm.zed).

- Tree-sitter: [tree-sitter-go-template](https://github.com/ngalaiko/tree-sitter-go-template/tree/master)
- Language Server: [mrjosh/helm-ls](https://github.com/mrjosh/helm-ls)

## Setup

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

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

0 comments on commit 76d6a01

Please sign in to comment.