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,127 @@
(identifier) @variable
(int_literal) @number
(float_literal) @number.float
(bool_literal) @boolean
(type_declaration) @type
(function_declaration
(identifier) @function)
(parameter
(variable_identifier_declaration
(identifier) @variable.parameter))
(struct_declaration
(identifier) @type)
(struct_declaration
(struct_member
(variable_identifier_declaration
(identifier) @variable.member)))
(type_constructor_or_function_call_expression
(type_declaration) @function.call)
[
"bitcast"
"discard"
"enable"
"fallthrough"
"let"
"type"
"var"
"override"
(texel_format)
] @keyword
"struct" @keyword.type
[
"private"
"storage"
"uniform"
"workgroup"
] @keyword.modifier
[
"read"
"read_write"
"write"
] @keyword.modifier
"fn" @keyword.function
"return" @keyword.return
[
","
"."
":"
";"
"->"
] @punctuation.delimiter
[
"("
")"
"["
"]"
"{"
"}"
] @punctuation.bracket
[
"loop"
"for"
"while"
"break"
"continue"
"continuing"
] @keyword.repeat
[
"if"
"else"
"switch"
"case"
"default"
] @keyword.conditional
[
"&"
"&&"
"/"
"!"
"="
"=="
"!="
">"
">="
">>"
"<"
"<="
"<<"
"%"
"-"
"+"
"|"
"||"
"*"
"~"
"^"
"@"
"++"
"--"
] @operator
(attribute
(identifier) @attribute)
[
(line_comment)
(block_comment)
] @comment @spell