mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-19 11:50:09 -04:00
15 lines
372 B
Scheme
15 lines
372 B
Scheme
|
|
; highlights.scm
|
||
|
|
"import" @include
|
||
|
|
"package" @include
|
||
|
|
|
||
|
|
|
||
|
|
(reserved_keywords) @keyword
|
||
|
|
(comment) @comment
|
||
|
|
(rego_block rego_rule_name: (identifier) @function)
|
||
|
|
(builtin_function function_name: (function_name) @function.builtin)
|
||
|
|
(opening_parameter) @punctuation.bracket
|
||
|
|
(closing_parameter) @punctuation.bracket
|
||
|
|
(string_definition) @string
|
||
|
|
(number) @number
|
||
|
|
(operator) @operator
|