Skip to content

Instantly share code, notes, and snippets.

@nickurban
Last active August 29, 2015 13:56
Show Gist options
  • Select an option

  • Save nickurban/9298315 to your computer and use it in GitHub Desktop.

Select an option

Save nickurban/9298315 to your computer and use it in GitHub Desktop.
.vimrc
set nocompatible " be iMproved, required
syntax on
" set default indentation
set ts=2 sw=2 expandtab
" use markdown syntax highlighting on .md files
au BufRead,BufNewFile *.md set filetype=markdown
" *** Vundle Config
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" alternatively, pass a path where Vundle should install bundles
"let path = '~/some/path/here'
"call vundle#rc(path)
" let Vundle manage Vundle, required
Plugin 'gmarik/vundle'
Plugin 'tpope/vim-rails.git'
Plugin 'tpope/vim-haml'
Plugin 'slim-template/vim-slim'
Plugin 'elzr/vim-json'
filetype plugin indent on " required
" *** End Vundle Config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment