1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-07 00:05:10 +01:00
Files
dotfiles/.vim/syntax/todo.vim
2015-03-18 16:59:48 +01:00

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"