Skip to content

Instantly share code, notes, and snippets.

@erich
Created August 19, 2012 18:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erich/3396773 to your computer and use it in GitHub Desktop.
Save erich/3396773 to your computer and use it in GitHub Desktop.
Vim configuration
" Install vundle - git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
" Run 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:
"
" original repos on github
Bundle 'tpope/vim-fugitive'
Bundle 'Lokaltog/vim-easymotion'
Bundle 'jeetsukumaran/vim-buffergator.git'
Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}
Bundle 'tpope/vim-rails.git'
Bundle 'kien/ctrlp.vim.git'
Bundle 'altercation/vim-colors-solarized'
Bundle 'jgdavey/vim-turbux.git'
Bundle 'benmills/vimux'
Bundle 'ervandew/supertab'
Bundle 'edsono/vim-matchit.git'
Bundle 'kana/vim-textobj-user.git'
Bundle 'nelstrom/vim-textobj-rubyblock.git'
Bundle 'scrooloose/syntastic.git'
" vim-scripts repos
Bundle 'L9'
Bundle 'FuzzyFinder'
" non github repos
filetype plugin indent on " required!
runtime macros/matchit.vim
let g:solarized_termcolors=256
set t_Co=16
set background=dark
set shiftwidth=2
set softtabstop=2
set tabstop=2
let mapleader = ","
let g:ctrlp_max_height = 20
syn on
set nu
set ruler
let g:turbux_command_rspec = 'spec'
colorscheme solarized
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment