Skip to content

Instantly share code, notes, and snippets.

@jjt
Created October 29, 2014 22:30
Show Gist options
  • Save jjt/2022c8e892d11537f168 to your computer and use it in GitHub Desktop.
Save jjt/2022c8e892d11537f168 to your computer and use it in GitHub Desktop.

Revisions

  1. Jason Trill created this gist Oct 29, 2014.
    20 changes: 20 additions & 0 deletions .vimrc
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,20 @@
    " 1. Save this file as ~/.vimrc
    " 2. In terminal: $ git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
    " 3. Start vim/macvim and run :BundleInstall

    set nocompatible " be iMproved, required
    filetype off " required

    " set the runtime path to include Vundle and initialize
    set rtp+=~/.vim/bundle/Vundle.vim
    call vundle#begin()

    " let Vundle manage Vundle, required
    Plugin 'gmarik/Vundle.vim'

    " Sensible vim defaults
    Plugin 'tpope/vim-sensible'

    " All of your Plugins must be added before the following line
    call vundle#end() " required
    filetype plugin indent on " required