Created
June 25, 2012 18:38
-
-
Save marano/2990426 to your computer and use it in GitHub Desktop.
.vimrc
This file contains 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
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