forked from zed-industries/zed
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Add Helm extension docs (zed-industries#19095)
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
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
] | ||
} | ||
``` |