Skip to content

Instantly share code, notes, and snippets.

@marano
Created June 25, 2012 18:38
Show Gist options
  • Save marano/2990426 to your computer and use it in GitHub Desktop.
Save marano/2990426 to your computer and use it in GitHub Desktop.
.vimrc
set nocompatible
filetype off
set hlsearch
set tabstop=2
set shiftwidth=2
set expandtab
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
Bundle 'altercation/vim-colors-solarized'
Bundle 'groenewege/vim-less'
Bundle 'bbommarito/vim-slim'
filetype plugin indent on
syntax enable
set background=dark
colorscheme solarized
"
" Brief help
" :BundleList - list configured bundles
" :BundleInstall(!) - install(update) bundles
" :BundleSearch(!) foo - search(or refresh cache first) for foo
" :BundleClean(!) - confirm(or auto-approve) removal of unused bundles
"
" see :h vundle for more details or wiki for FAQ
" NOTE: comments after Bundle command are not allowed..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment