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,72 @@
; A highlight file for nvim-treesitter to use
[(pod_command)
(command)
(cut_command)] @keyword
(command_paragraph
(command) @keyword
(#match? @keyword "^=head")
(content) @text.title)
(command_paragraph
(command) @keyword
(#match? @keyword "^=over")
(content) @number)
(command_paragraph
(command) @keyword
(#match? @keyword "^=item")
(content) @text)
(command_paragraph
(command) @keyword
(#match? @keyword "^=encoding")
(content) @string.special)
(command_paragraph
(command) @keyword
(#not-match? @keyword "^=(head|over|item|encoding)")
(content) @string)
(verbatim_paragraph (content) @text.literal)
(interior_sequence
(sequence_letter) @character
["<" ">"] @punctuation.delimiter
)
(interior_sequence
(sequence_letter) @character
(#eq? @character "B")
(content) @text.strong)
(interior_sequence
(sequence_letter) @character
(#eq? @character "C")
(content) @text.literal)
(interior_sequence
(sequence_letter) @character
(#eq? @character "F")
(content) @text.underline @string.special)
(interior_sequence
(sequence_letter) @character
(#eq? @character "I")
(content) @text.emphasis)
(interior_sequence
(sequence_letter) @character
(#eq? @character "L")
(content) @text.uri)
(interior_sequence
(sequence_letter) @character
(#eq? @character "X")
(content) @text.reference)
(interior_sequence
(sequence_letter) @character
(#eq? @character "E")
(content) @string.escape)