aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.vimrc4
1 files changed, 3 insertions, 1 deletions
diff --git a/.vimrc b/.vimrc
index d66c241..2e62b90 100644
--- a/.vimrc
+++ b/.vimrc
@@ -415,7 +415,9 @@ Plug 'cocopon/colorswatch.vim'
" Write git commit message.
Plug 'rhysd/committia.vim'
" Make gui-only color schemes 256colors-compatible.
-Plug 'godlygeek/csapprox'
+if !exists('+termguicolors') || !&termguicolors
+ Plug 'godlygeek/csapprox'
+endif
" Fast Fuzzy Finder.
Plug 'ctrlpvim/ctrlp.vim'
" CtrlP's matcher by builtin `matchfuzzy()`.