1

Regenerate nvim config

This commit is contained in:
2024-06-02 03:29:20 +02:00
parent 75eea0c030
commit ef2e28883d
5576 changed files with 604886 additions and 503 deletions

View File

@ -0,0 +1 @@
; inherits: hcl

View File

@ -0,0 +1,41 @@
; inherits: hcl
; Terraform specific references
;
;
; local/module/data/var/output
(expression
(variable_expr
(identifier) @variable.builtin
(#any-of? @variable.builtin "data" "var" "local" "module" "output"))
(get_attr
(identifier) @variable.member))
; path.root/cwd/module
(expression
(variable_expr
(identifier) @type.builtin
(#eq? @type.builtin "path"))
(get_attr
(identifier) @variable.builtin
(#any-of? @variable.builtin "root" "cwd" "module")))
; terraform.workspace
(expression
(variable_expr
(identifier) @type.builtin
(#eq? @type.builtin "terraform"))
(get_attr
(identifier) @variable.builtin
(#any-of? @variable.builtin "workspace")))
; Terraform specific keywords
; FIXME: ideally only for identifiers under a `variable` block to minimize false positives
((identifier) @type.builtin
(#any-of? @type.builtin "bool" "string" "number" "object" "tuple" "list" "map" "set" "any"))
(object_elem
val: (expression
(variable_expr
(identifier) @type.builtin
(#any-of? @type.builtin "bool" "string" "number" "object" "tuple" "list" "map" "set" "any"))))

View File

@ -0,0 +1 @@
; inherits: hcl

View File

@ -0,0 +1 @@
; inherits: hcl