mirror of
https://github.com/aquatix/dotfiles.git
synced 2025-12-07 04:45:09 +01:00
9 lines
151 B
VimL
9 lines
151 B
VimL
if exists("b:current_syntax")
|
|
finish
|
|
endif
|
|
|
|
syntax keyword todoKeyword todo done
|
|
highlight link todoKeyword Keyword
|
|
|
|
let b:current_syntax = "todo"
|