Skip to content

Instantly share code, notes, and snippets.

@song940
Created January 17, 2014 14:18
Show Gist options
  • Save song940/8474027 to your computer and use it in GitHub Desktop.
Save song940/8474027 to your computer and use it in GitHub Desktop.
" 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