mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 21:32:40 +00:00
f92d0de58d
Closes #15988 Fixed indent configuration for terraform/HCL Release Notes: - N/A https://github.com/user-attachments/assets/09b44ac9-ef09-463c-876d-0fbcdd1f09c9 --------- Co-authored-by: Marshall Bowers <elliott.codes@gmail.com>
15 lines
656 B
TOML
15 lines
656 B
TOML
name = "Terraform Vars"
|
|
grammar = "hcl"
|
|
path_suffixes = ["tfvars"]
|
|
line_comments = ["# ", "// "]
|
|
block_comment = ["/*", "*/"]
|
|
autoclose_before = ",}])"
|
|
brackets = [
|
|
{ start = "{", end = "}", close = true, newline = true },
|
|
{ start = "[", end = "]", close = true, newline = true },
|
|
{ start = "(", end = ")", close = true, newline = true },
|
|
{ start = "\"", end = "\"", close = true, newline = false, not_in = ["comment", "string"] },
|
|
{ start = "'", end = "'", close = true, newline = false, not_in = ["comment", "string"] },
|
|
{ start = "/*", end = " */", close = true, newline = false, not_in = ["comment", "string"] },
|
|
]
|
|
tab_size = 2
|