1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-07 00:05:10 +01:00

Started syntax highlighting of 'todo' files

This commit is contained in:
Michiel Scholten
2015-03-18 16:59:48 +01:00
parent 04c877dd33
commit e264282165
2 changed files with 9 additions and 0 deletions

8
.vim/syntax/todo.vim Normal file
View File

@@ -0,0 +1,8 @@
if exists("b:current_syntax")
finish
endif
syntax keyword todoKeyword todo done
highlight link todoKeyword Keyword
let b:current_syntax = "todo"