Skip to content

Commit dcc0c8d

Browse files
committed
Set up Vundle.vim 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/VundleVim/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.
1 parent fc77b04 commit dcc0c8d

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

vimrc.vim

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
" Gotta be first
22
set nocompatible
33

4+
filetype off
5+
6+
set rtp+=~/.vim/bundle/Vundle.vim
7+
call vundle#begin()
8+
9+
Plugin 'VundleVim/Vundle.vim'
10+
11+
call vundle#end()
12+
13+
filetype plugin indent on
14+
415
" --- General settings ---
516
set backspace=indent,eol,start
617
set ruler

0 commit comments

Comments
 (0)