Created
January 17, 2014 14:18
-
-
Save lsongdev/8474027 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
" git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle | |
" BundleInstall | |
set nocompatible " be iMproved | |
filetype off " required! | |
set rtp+=~/.vim/bundle/vundle/ | |
call vundle#rc() | |
" let Vundle manage Vundle | |
" required! | |
Bundle 'gmarik/vundle' | |
" My Bundles here: | |
Bundle 'Align' | |
Bundle 'tpope/vim-rails' | |
Bundle 'msanders/snipmate.vim' | |
Bundle 'scrooloose/nerdtree' | |
Bundle 'kchmck/vim-coffee-script' | |
Bundle 'hallison/vim-markdown' | |
Bundle 'slim-template/vim-slim' | |
Bundle 'kien/ctrlp.vim' | |
Bundle 'scrooloose/syntastic' | |
Bundle 'othree/html5.vim' | |
" Close backup | |
set nobackup | |
set nowritebackup | |
" Style | |
colorscheme desert | |
set number | |
syntax on | |
set incsearch | |
set wildmenu | |
filetype plugin indent on | |
set autoindent | |
" Display extra whitespace | |
set list listchars=tab:»·,trail:· | |
" Tab | |
set tabstop=2 | |
set shiftwidth=2 | |
set expandtab | |
set smarttab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment