[TS] Add support for helm chart highlighting

This commit is contained in:
2026-03-10 11:45:39 +01:00
parent a5644e8645
commit bc8830555e
2 changed files with 62 additions and 54 deletions

View File

@@ -1,8 +1,14 @@
vim.filetype.add({
extension = {
gotmpl = "gotmpl",
},
pattern = {
["compose.*%.ya?ml"] = "yaml.docker-compose",
["docker%-compose.*%.ya?ml"] = "yaml.docker-compose",
[".*/.gitea/workflows/.*%.ya?ml"] = "yaml.actions",
[".*/.github/workflows/.*%.ya?ml"] = "yaml.actions",
[".*/templates/.*%.tpl"] = "helm",
[".*/templates/.*%.ya?ml"] = "helm",
["helmfile.*%.ya?ml"] = "helm",
},
})

View File

@@ -12,7 +12,9 @@ return {
"c",
"cpp",
"css",
"gotmpl",
"haskell",
"helm",
"html",
"hyprlang",
"java",