Created
August 19, 2012 18:03
-
-
Save erich/3396773 to your computer and use it in GitHub Desktop.
Vim configuration
This file contains hidden or 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
" 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