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,45 @@
; Regular expressions
;--------------------
(regexp_name) @variable
[(any) (eof)] @constant
[(string) (character)] @string
(escape_sequence) @escape
(character_set "^" @punctuation.special)
(character_range "-" @punctuation.delimiter)
(regexp_difference "#" @operator)
(regexp_repetition ["*" "+" "?"] @operator)
(regexp_alternative "|" @operator)
; Rules
;------
(lexer_entry_name) @function
(lexer_argument) @variable.parameter
(lexer_entry ["=" "|"] @punctuation.delimiter)
; Keywords
;---------
["and" "as" "parse" "refill" "rule" "shortest"] @keyword
; Punctuation
;------------
["[" "]" "(" ")" "{" "}"] @punctuation.bracket
; Comments
;---------
(comment) @comment

View File

@ -0,0 +1,2 @@
((ocaml) @injection.content
(#set! injection.language "ocaml"))