mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
11 lines
405 B
VimL
11 lines
405 B
VimL
|
" Syntax highlighting for .dream files.
|
||
|
syntax match dreamGrime '\v\d'
|
||
|
syntax match dreamComments '\v^\^(.*)$'
|
||
|
syntax match dreamCommands '\v^\^ (tags|title|secret|align|curtains|grimes|colour) \^ (.*) \^$'
|
||
|
syntax match dreamIllegal '\v^\^ (justify|color) \^ (.*) \^$'
|
||
|
|
||
|
hi def link dreamGrime Identifier
|
||
|
hi def link dreamComments Comment
|
||
|
hi def link dreamCommands Statement
|
||
|
hi def link dreamIllegal Error
|