diff options
author | Teddy Wing | 2016-12-09 18:35:07 -0500 |
---|---|---|
committer | Teddy Wing | 2016-12-09 18:35:07 -0500 |
commit | 9ee93c037e21f90650004175850f84a5b6d6d699 (patch) | |
tree | 66696f8c01442325bebc8bd75ddb1da0a394967e | |
parent | 2c793118aded83d719ac307e4133f1c1bb41137c (diff) | |
download | dotvim-9ee93c037e21f90650004175850f84a5b6d6d699.tar.bz2 |
ftplugin/todo.vim: Set `nocursorline`
Don't use a cursorline in TODO files because in my colour scheme it
makes the text of normal priority to-dos unreadable as it overrides the
line background so you end up with dark text on a dark background.
-rw-r--r-- | ftplugin/todo.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ftplugin/todo.vim b/ftplugin/todo.vim index 64642ac..c06e32f 100644 --- a/ftplugin/todo.vim +++ b/ftplugin/todo.vim @@ -2,4 +2,6 @@ if exists('b:did_ftplugin') unlet b:did_ftplugin endif +setlocal nocursorline + highlight Statement ctermbg=220 ctermfg=235 |