1

Update generated neovim config

This commit is contained in:
2024-08-15 14:28:54 +02:00
parent 07409c223d
commit 25cfcf2941
3809 changed files with 351157 additions and 0 deletions

View File

@ -0,0 +1,37 @@
; adapted from https://github.com/vhyrro/tree-sitter-luap
(".") @character
[
(anchor_begin)
(anchor_end)
] @string.escape
[
"[" "]"
"(" ")"
] @punctuation.bracket
[
(zero_or_more)
(shortest_zero_or_more)
(one_or_more)
(zero_or_one)
] @operator
(range
from: (character) @constant
"-" @punctuation.delimiter
to: (character) @constant)
(set
(character) @constant)
(class) @keyword
(negated_set
"^" @string.regex
(character) @constant)
(balanced_match
(character) @parameter)