Skip to content

Commit

Permalink
Set up Vundle.vim boilerplate
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jez committed Nov 12, 2016
1 parent fc77b04 commit dcc0c8d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions vimrc.vim
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
" Gotta be first
set nocompatible

filetype off

set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

Plugin 'VundleVim/Vundle.vim'

call vundle#end()

filetype plugin indent on

" --- General settings ---
set backspace=indent,eol,start
set ruler
Expand Down

1 comment on commit dcc0c8d

@jez
Copy link
Owner Author

@jez jez commented on dcc0c8d Nov 13, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.