This commit is contained in:
2022-11-06 18:12:41 -08:00
2 changed files with 44 additions and 4 deletions

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'
@@ -80,7 +80,7 @@
" }}}
" Vundle - Closing {{{
" Vim Plug - Closing {{{
call plug#end()