mirror of
https://github.com/chenasraf/nvim-treesitter.git
synced 2026-05-17 17:38:02 +00:00
21 lines
226 B
Scheme
21 lines
226 B
Scheme
; Preproc
|
|
(command
|
|
(identifier) @keyword.directive)
|
|
|
|
; Keywords
|
|
(keyword) @keyword
|
|
|
|
; Literals
|
|
(number) @number
|
|
|
|
(float) @number.float
|
|
|
|
; Variables
|
|
[
|
|
(identifier)
|
|
(unit)
|
|
] @variable
|
|
|
|
; Comments
|
|
(comment) @comment @spell
|