From 152a57b45d432c636774d2adc500cea8d3bc87b4 Mon Sep 17 00:00:00 2001 From: surtur Date: Sat, 29 May 2021 21:21:59 +0200 Subject: [PATCH] vimrc: load nerdcommenter right away --- .vim/vimrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.vim/vimrc b/.vim/vimrc index 03b94fb..c4d349b 100644 --- a/.vim/vimrc +++ b/.vim/vimrc @@ -29,7 +29,7 @@ Plug 'vim-airline/vim-airline-themes' Plug 'ctrlpvim/ctrlp.vim', { 'on': [] } " 🌷 Distraction-free writing in Vim Plug 'junegunn/goyo.vim', { 'for': 'markdown' } -Plug 'preservim/nerdcommenter', { 'on': [] } +Plug 'preservim/nerdcommenter' Plug 'airblade/vim-gitgutter' Plug 'tpope/vim-surround' @@ -364,9 +364,9 @@ au BufNewFile,BufRead *.cshtml augroup async_plug_load autocmd! - " these two take the longest to load, let's do it in a semi-non-blocking + " these plugins take the longest to load, let's do it in a semi-non-blocking " fashion - autocmd CursorHold,CursorHoldI * call plug#load('syntastic', 'nerdcommenter', 'vim-clang', 'vim-speeddating', 'ctrlp.vim') + autocmd CursorHold,CursorHoldI * call plug#load('syntastic', 'vim-clang', 'vim-speeddating', 'ctrlp.vim') \| autocmd! async_plug_load augroup END