1if exists("b:current_syntax")
2 finish
3endif
4
5syn match PlanDone '^+\ze\s' conceal cchar=✔
6syn match PlanWork '^\*\ze\s' conceal cchar=⏲
7syn match PlanTodo '^-\ze\s' conceal cchar=⨯
8
9hi def link PlanDone Include
10hi def link PlanWork Keyword
11hi def link PlanTodo Comment