aboutsummaryrefslogtreecommitdiffhomepage
path: root/.vimrc
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2021-11-16 19:28:28 +0900
committernsfisis <nsfisis@gmail.com>2021-11-16 19:28:28 +0900
commitf034650977e1900c14b2dd9a6fd37938ea82c7a3 (patch)
treedc89dd1a57be51f6e23c0c7e924037c7101194c7 /.vimrc
parentfb0dcaa504c052ce11de3186e6dfd4f1b5c1be88 (diff)
downloaddotfiles-f034650977e1900c14b2dd9a6fd37938ea82c7a3.tar.gz
dotfiles-f034650977e1900c14b2dd9a6fd37938ea82c7a3.tar.zst
dotfiles-f034650977e1900c14b2dd9a6fd37938ea82c7a3.zip
vim: replace csapprox plugin with my fork version
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc9
1 files changed, 5 insertions, 4 deletions
diff --git a/.vimrc b/.vimrc
index d23f472..5c259ab 100644
--- a/.vimrc
+++ b/.vimrc
@@ -415,10 +415,6 @@ Plug 'rhysd/vim-clang-format'
Plug 'cocopon/colorswatch.vim'
" Write git commit message.
Plug 'rhysd/committia.vim'
-" Make gui-only color schemes 256colors-compatible.
-if !exists('+termguicolors') || !&termguicolors
- Plug 'godlygeek/csapprox'
-endif
" Fast Fuzzy Finder.
Plug 'ctrlpvim/ctrlp.vim'
" CtrlP's matcher by builtin `matchfuzzy()`.
@@ -588,6 +584,11 @@ Plug g:MY_ENV.my_dir
" Integration with ripgrep, fast alternative of grep command.
Plug 'nsfisis/vim-ripgrep'
+" Fork version of godlygeek/csapprox
+" Make gui-only color schemes 256colors-compatible.
+Plug 'nsfisis/csapprox'
+
+
call plug#end()