From 9a9d57b592864979537198733e2f46c11dd8b1d1 Mon Sep 17 00:00:00 2001 From: Alpha Chen Date: Sat, 16 Oct 2021 17:25:57 -0700 Subject: [PATCH] [vim] - update comment color for paramount (due to turning on cursorline) - open folds when backwards searching as well as forwards searching --- .vimrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.vimrc b/.vimrc index 19772e0..325d412 100644 --- a/.vimrc +++ b/.vimrc @@ -47,6 +47,10 @@ fun! s:highlight() highlight Normal ctermbg=NONE " highlight CursorLine ctermbg=236 " highlight MatchParen ctermbg=238 + + " For the paramount colorscheme, since otherwise the contrast w/cursorline + " is insufficient. + highlight Comment ctermfg=243 endfun augroup MyHighlight @@ -171,6 +175,7 @@ set smartcase " https://github.com/haya14busa/is.vim/issues/4 map n (is-n)zv +map N (is-N)zv " }}}