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,29 @@
;;; Note: The Vim grammar places all parentheses on the same level. This means
;;; an expression like (((3))) does not have three levels of nesting, but only
;;; one. All the parentheses and the integer literal are on the same level.
;;; This makes it impossible to apply alternating highlights.
(list
"[" @delimiter
"]" @delimiter @sentinel) @container
(dictionnary ;; this is no typo, "dictionary" is misspelled in the parser
"{" @delimiter
(dictionnary_entry
":" @delimiter)
"}" @delimiter @sentinel) @container
(call_expression
"(" @delimiter
")" @delimiter @sentinel) @container
(unary_operation
"(" @delimiter
")" @delimiter @sentinel) @container
(binary_operation
"(" @delimiter
")" @delimiter @sentinel) @container
(ternary_expression
"(" @delimiter
")" @delimiter @sentinel) @container