Compare commits

..

No commits in common. "fdbfba1e93199f2ba159b3c53a6a96484538a632" and "59a0f3c0753fd702497c20c132932e7028c8589d" have entirely different histories.

View File

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