mirror of
https://github.com/aquatix/dotfiles.git
synced 2025-12-07 00:05:10 +01:00
16 lines
361 B
VimL
16 lines
361 B
VimL
if exists("b:current_syntax")
|
|
finish
|
|
endif
|
|
|
|
syntax keyword todoKeyword todo done
|
|
highlight link todoKeyword Keyword
|
|
|
|
syntax match todoComment "\v#.*$"
|
|
highlight link todoComment Comment
|
|
|
|
syn region todoDay matchgroup=todoHeadingDelimiter start="==\@!" end="==*\s*$" keepend oneline
|
|
|
|
hi def link todoHeadingDelimiter Delimiter
|
|
|
|
let b:current_syntax = "todo"
|