From 9ee93c037e21f90650004175850f84a5b6d6d699 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Fri, 9 Dec 2016 18:35:07 -0500 Subject: 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. --- ftplugin/todo.vim | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ftplugin/todo.vim') 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 -- cgit v1.2.3