Fix Terraform syntax highlighting (#7518)

https://github.com/zed-industries/zed/pull/7467 introduced a new
`grammar` field in the language configuration files.
The underlying tree-sitter grammar for Terraform should be `hcl` instead
of `terraform`. This PR fixes that typo.

Release Notes:

- N/A
This commit is contained in:
Daniel Banck 2024-02-07 22:06:13 +01:00 committed by GitHub
parent eaadf56db9
commit 31d9edfaaa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,5 +1,5 @@
name = "Terraform"
grammar = "terraform"
grammar = "hcl"
path_suffixes = ["tf", "tfvars"]
line_comments = ["# ", "// "]
block_comment = ["/*", "*/"]