Last active
August 29, 2015 14:13
-
-
Save jhwhite/3b9b36258c7fcbc8fb40 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1 set nocompatible " be iMproved, required | |
| 2 filetype off " required | |
| 3 | |
| 4 set number | |
| 5 syntax enable | |
| 6 set backspace=indent,eol,start | |
| 7 colorscheme distinguished | |
| 8 | |
| 9 " set the runtime path to include Vundle and initialize | |
| 10 set rtp+=~/.vim/bundle/Vundle.vim | |
| 11 call vundle#begin() | |
| 12 | |
| 13 " let Vundle manage Vundle, required | |
| 14 Plugin 'gmarik/Vundle.vim' | |
| 15 Plugin 'kien/ctrlp.vim' | |
| 16 Plugin 'jelera/vim-javascript-syntax' | |
| 17 Plugin 'scrooloose/syntastic' | |
| 18 Plugin 'tpope/vim-rails' | |
| 19 | |
| 20 " All of your Plugins must be added before the following line | |
| 21 call vundle#end() " required | |
| 22 filetype plugin indent on " required |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment