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,66 @@
(op) @keyword.operator
"..." @keyword.operator
[
"open"
"def"
"let"
"if"
"then"
"elsif"
"else"
"begin"
"end"
"while"
"do"
"to"
"for"
"fun"
"try"
"catch"
] @keyword
["and" "or"] @conditional
(inline_if [ "?" ":" ] @conditional.ternary)
[
"%ifdef"
"%ifndef"
"%ifencoder"
"%ifnencoder"
"%ifversion"
"%else"
"%endif"
"%argsof"
"%include"
] @preproc
(encoder_name) @constant.builtin
(anonymous_argument (var) @parameter)
(labeled_argument label: (var) @parameter)
"." @punctuation.delimiter
[
"("
")"
"["
"]"
"{"
"}"
] @punctuation.bracket
(app name: (var) @function.call)
(method) @method
(method_app) @method.call
(method) @function.method
(var) @variable
(string) @string
(integer) @number
(float) @number
(bool) @boolean
(comment) @comment
(regexp) @string.regex
(type) @type