diff options
author | Teddy Wing | 2018-11-24 21:31:48 +0100 |
---|---|---|
committer | Teddy Wing | 2018-11-24 21:31:48 +0100 |
commit | 9323f2039c4342343b7f8c66eece1b3d23a56420 (patch) | |
tree | ac1519cc2001843e503a26d1ba7c626466dbfccc /ftplugin/todo.vim | |
parent | 1074322bc78a8fc98fd3db47f98e09db8de268b7 (diff) | |
download | dotvim-9323f2039c4342343b7f8c66eece1b3d23a56420.tar.bz2 |
ftplugin/todo.vim: Don't change highlighting of non-todo files
Previously, the custom highlighting I had added for TODO files would
infect the highlighting of all other files in the same Vim session.
Only change the highlighting of the `todoUndone` group so that it
doesn't affect anything else.
Diffstat (limited to 'ftplugin/todo.vim')
-rw-r--r-- | ftplugin/todo.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ftplugin/todo.vim b/ftplugin/todo.vim index c06e32f..8af9a35 100644 --- a/ftplugin/todo.vim +++ b/ftplugin/todo.vim @@ -4,4 +4,4 @@ endif setlocal nocursorline -highlight Statement ctermbg=220 ctermfg=235 +highlight todoUndone ctermbg=220 ctermfg=235 |