From 1186be27a86dccf236612530a46d5263882afea3 Mon Sep 17 00:00:00 2001 From: Jacob Zimmerman Date: Wed, 25 Feb 2015 03:17:00 -0500 Subject: [PATCH] Set up Pathogen boilerplate We're going to be using the Vim plugin manager called Vundle. NOTE For this talk, I'm assuming that you're starting from a blank slate. If you have a ~/.vim folder, move it out of the way: mv ~/.vim ~/.vim.old INSTALLATION INSTRUCIONS Before making these changes, you'll need to install Vundle. Run this command to install it: git clone https://github.com/gmarik/Vundle.vim ~/.vim/bundle/Vundle.vim This installs Vundle.vim to a subdirectory of your ~/.vim folder. We'll be using Vundle in upcoming steps to add lots of plugins! The changes we made in this step are outlined right on the front page of the Vundle project page on GitHub. They're just stock changes that need to be made for Vundle to work. --- vimrc.vim | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/vimrc.vim b/vimrc.vim index f32d679..e4daaf3 100644 --- a/vimrc.vim +++ b/vimrc.vim @@ -1,6 +1,17 @@ " Gotta be first set nocompatible +filetype off + +set rtp+=~/.vim/bundle/Vundle.vim +call vundle#begin() + +Plugin 'gmarik/Vundle.vim' + +call vundle#end() + +filetype plugin indent on + " --- General settings --- set backspace=indent,eol,start set ruler