vimrc: load ctrlp.vim by default (on start-up)

This commit is contained in:
surtur 2022-07-02 21:33:38 +02:00
parent 85781c67f6
commit 5cb9cd0fd5
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -31,7 +31,7 @@ Plug 'fxn/vim-monochrome'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'ctrlpvim/ctrlp.vim', { 'on': [] }
Plug 'ctrlpvim/ctrlp.vim'
" 🌷 Distraction-free writing in Vim
Plug 'junegunn/goyo.vim', { 'for': 'markdown' }
Plug 'preservim/nerdcommenter'
@ -403,7 +403,7 @@ augroup async_plug_load
autocmd!
" these plugins take the longest to load, let's do it in a semi-non-blocking
" fashion
autocmd CursorHold,CursorHoldI * call plug#load('syntastic', 'vim-clang', 'vim-speeddating', 'ctrlp.vim')
autocmd CursorHold,CursorHoldI * call plug#load('syntastic', 'vim-clang', 'vim-speeddating')
\| autocmd! async_plug_load
augroup END