Regenerate nvim config
This commit is contained in:
@ -0,0 +1,78 @@
|
||||
; Includes
|
||||
"import" @keyword.import
|
||||
|
||||
; Conditionals
|
||||
[
|
||||
"if"
|
||||
"else"
|
||||
] @keyword.conditional
|
||||
|
||||
; Repeats
|
||||
"foreach" @keyword.repeat
|
||||
|
||||
; Operators
|
||||
[
|
||||
"="
|
||||
"+="
|
||||
"-="
|
||||
"!"
|
||||
"+"
|
||||
"-"
|
||||
"<"
|
||||
"<="
|
||||
">"
|
||||
">="
|
||||
"=="
|
||||
"!="
|
||||
"&&"
|
||||
"||"
|
||||
] @operator
|
||||
|
||||
; Variables
|
||||
(identifier) @variable
|
||||
|
||||
; Functions
|
||||
(call_expression
|
||||
function: (identifier) @function.call)
|
||||
|
||||
; Fields
|
||||
(scope_access
|
||||
field: (identifier) @variable.member)
|
||||
|
||||
; Literals
|
||||
(string) @string
|
||||
|
||||
(escape_sequence) @string.escape
|
||||
|
||||
(expansion) @none
|
||||
|
||||
(integer) @number
|
||||
|
||||
(hex) @string.special
|
||||
|
||||
(boolean) @boolean
|
||||
|
||||
; Punctuation
|
||||
[
|
||||
"{"
|
||||
"}"
|
||||
"["
|
||||
"]"
|
||||
"("
|
||||
")"
|
||||
] @punctuation.bracket
|
||||
|
||||
[
|
||||
"."
|
||||
","
|
||||
] @punctuation.delimiter
|
||||
|
||||
(expansion
|
||||
[
|
||||
"$"
|
||||
"${"
|
||||
"}"
|
||||
] @punctuation.special)
|
||||
|
||||
; Comments
|
||||
(comment) @comment
|
||||
Reference in New Issue
Block a user