commit 834367b5d2deffc828bf25a64d87d6eac3930790
parent 4f11cfe6d30c34cd2067239a047ec02a8e133558
Author: Alex Balgavy <a.balgavy@gmail.com>
Date: Wed, 15 May 2019 11:54:46 +0200
vim: replace NERDCommenter with vim-commentary
NERDCommenter had too many features and I only need simple commenting.
So I opted for a smaller plugin.
Former-commit-id: 29d0fd8ad2fb8b0d2e4677506fb58d3ee1c662e6
Diffstat:
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/vim/plugins.vimrc b/vim/plugins.vimrc
@@ -10,12 +10,11 @@ call plug#begin('~/.vim/plugged')
" A color table with xterm color codes
Plug 'guns/xterm-color-table.vim'
+" Mappings for netrw
Plug 'tpope/vim-vinegar'
-" NERD Commenter - simple comment toggling {{{
-Plug 'scrooloose/nerdcommenter'
-let g:NERDSpaceDelims = 1
-" }}}
+" Simple commenting
+ Plug 'tpope/vim-commentary'
" Emmet - must-have for HTML, awesome snippet expansion
Plug 'mattn/emmet-vim'