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,63 @@
; Scopes
[
(block)
(declaration)
(statement)
] @local.scope
; References
(identifier) @local.reference
; Definitions
(package_declaration
(identifier) @local.definition.namespace)
(import_declaration
alias: (identifier) @local.definition.namespace)
(procedure_declaration
(identifier) @local.definition.function)
(struct_declaration
(identifier) @local.definition.type
"::")
(enum_declaration
(identifier) @local.definition.enum
"::")
(union_declaration
(identifier) @local.definition.type
"::")
(bit_field_declaration
(identifier) @local.definition.type
"::")
(variable_declaration
(identifier) @local.definition.var
":=")
(const_declaration
(identifier) @local.definition.constant
"::")
(const_type_declaration
(identifier) @local.definition.type
":")
(parameter
(identifier) @local.definition.parameter
":"?)
(default_parameter
(identifier) @local.definition.parameter
":=")
(field
(identifier) @local.definition.field
":")
(label_statement
(identifier) @local.definition
":")