mirror of
https://github.com/aquatix/dotfiles.git
synced 2025-12-06 22:55:10 +01:00
17 lines
398 B
VimL
17 lines
398 B
VimL
if exists("b:current_syntax")
|
|
finish
|
|
endif
|
|
|
|
syntax keyword todoKeyword todo done
|
|
syntax keyword todoKeyword vrij free
|
|
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"
|