aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2020-05-17 07:27:48 -0400
committertdro <tdro@users.noreply.github.com>2020-05-17 07:27:48 -0400
commit3233d387003a9b3df3afeffcfe8e03f1615444a8 (patch)
tree7b905bc617e40ea9d09f275a2e1c57ac8464b6d3
parent217382e8d638d1cfe5f9fbc4428b419c3b4ea963 (diff)
downloaddotfiles-3233d387003a9b3df3afeffcfe8e03f1615444a8.tar.gz
dotfiles-3233d387003a9b3df3afeffcfe8e03f1615444a8.tar.bz2
dotfiles-3233d387003a9b3df3afeffcfe8e03f1615444a8.zip
.vimrc: Fix search highlighting color
-rw-r--r--.vim/colors/material-monokai.vim2
-rw-r--r--.vimrc3
2 files changed, 4 insertions, 1 deletions
diff --git a/.vim/colors/material-monokai.vim b/.vim/colors/material-monokai.vim
index cde0199..e5492c8 100644
--- a/.vim/colors/material-monokai.vim
+++ b/.vim/colors/material-monokai.vim
@@ -123,7 +123,7 @@ call s:h("MatchParen", { "fg": s:black, "bg": s:purple })
call s:h("Question", { "fg": s:yellow })
call s:h("ModeMsg", { "fg": s:yellow })
call s:h("MoreMsg", { "fg": s:yellow })
-call s:h("ErrorMsg", { "fg": s:black, "bg": s:red, "format": "standout" })
+call s:h("ErrorMsg", { "fg": s:red })
call s:h("WarningMsg", { "fg": s:red })
call s:h("VertSplit", { "fg": s:grey, "bg": s:darkgrey })
call s:h("LineNr", { "fg": s:grey, "bg": s:darkgrey })
diff --git a/.vimrc b/.vimrc
index 7a0bb27..4bdeaa3 100644
--- a/.vimrc
+++ b/.vimrc
@@ -117,6 +117,9 @@ hi EndOfBuffer ctermfg=black
" Remove background color.
hi Normal ctermbg=none
+" Set search highlight color.
+hi Search ctermfg=0
+
" Clear gutter color.
hi clear SignColumn