From 69b00cc08f4dd6d1c5268feaff68cf43bf8782b5 Mon Sep 17 00:00:00 2001 From: Rodolphe Breard Date: Sat, 17 Oct 2015 10:59:32 +0200 Subject: [PATCH] Documenting the Vundle plugins. --- .vimrc | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.vimrc b/.vimrc index 254503a..ebfd3fc 100644 --- a/.vimrc +++ b/.vimrc @@ -8,15 +8,13 @@ filetype off " Install all plugins: " $ vim +PluginInstall +qall -" set the runtime path to include Vundle and initialize -set rtp+=~/.vim/bundle/Vundle.vim +set rtp+=~/.vim/bundle/Vundle.vim " Set the runtime path to include Vundle and initialize. call vundle#begin() -" let Vundle manage Vundle, required -Plugin 'VundleVim/Vundle.vim' -Plugin 'bling/vim-airline' -Plugin 'scrooloose/nerdcommenter' -Plugin 'antoyo/vim-licenses' -Plugin 'tomasr/molokai' +Plugin 'VundleVim/Vundle.vim' " Let Vundle manage Vundle, required. +Plugin 'bling/vim-airline' " Lean & mean status/tabline for vim that's light as air. +Plugin 'scrooloose/nerdcommenter' " Vim plugin for intensely orgasmic commenting. +Plugin 'antoyo/vim-licenses' " Vim Plugin that Provides Commands to Add Licenses at the Top of the Buffer. +Plugin 'tomasr/molokai' " Molokai color scheme for Vim. call vundle#end()