aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--syntax/todo.vim12
1 files changed, 12 insertions, 0 deletions
diff --git a/syntax/todo.vim b/syntax/todo.vim
new file mode 100644
index 0000000..f1cd862
--- /dev/null
+++ b/syntax/todo.vim
@@ -0,0 +1,12 @@
+if exists('b:current_syntax')
+ finish
+endif
+
+" highlight Undone ctermbg=yellow ctermfg=235
+" match Undone /^- .\+/
+
+syntax match todoUndone /^- .\+/
+
+highlight link todoUndone Statement
+
+let b:current_syntax = 'todo'