Vim Plug, not vundle

This commit is contained in:
Mahesh Asolkar 2021-12-28 18:38:57 -08:00
parent ae5df119bf
commit d5fd6d3567

View File

@ -2,7 +2,7 @@
" Vim customization and package management " Vim customization and package management
" "
" This uses Vundle for package management, so Vundle is installed on the first " This uses Vim Plug for package management, so Vim Plug is installed on the first
" run. " run.
" "
" Run the following to install plugins: " Run the following to install plugins:
@ -46,13 +46,13 @@
" }}} " }}}
" Vundle setup - Preamble {{{ " Vim Plug setup - Preamble {{{
call plug#begin() call plug#begin()
" }}} " }}}
" Vundle setup - Packages {{{ " Vim Plug setup - Packages {{{
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'tpope/vim-fugitive' Plug 'tpope/vim-fugitive'
@ -79,7 +79,7 @@
" }}} " }}}
" Vundle - Closing {{{ " Vim Plug - Closing {{{
call plug#end() call plug#end()