Compare commits

...

3 Commits

View File

@ -2,7 +2,7 @@
" 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 the following to install plugins:
@ -46,13 +46,13 @@
" }}}
" Vundle setup - Preamble {{{
" Vim Plug setup - Preamble {{{
call plug#begin()
" }}}
" Vundle setup - Packages {{{
" Vim Plug setup - Packages {{{
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'tpope/vim-fugitive'
@ -79,7 +79,7 @@
" }}}
" Vundle - Closing {{{
" Vim Plug - Closing {{{
call plug#end()