Created
February 5, 2013 13:20
-
-
Save omgitsads/4714403 to your computer and use it in GitHub Desktop.
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 " be iMproved | |
filetype off " required! | |
set rtp+=~/.vim/bundle/vundle/ | |
call vundle#rc() | |
" let Vundle manage Vundle | |
" required! | |
Bundle 'gmarik/vundle' | |
" My Bundles here: | |
Bundle 'tpope/vim-fugitive' | |
Bundle 'kien/ctrlp.vim' | |
Bundle 'scrooloose/nerdtree' | |
Bundle 'tpope/vim-endwise' | |
Bundle 'mileszs/ack.vim' | |
Bundle 'altercation/vim-colors-solarized' | |
Bundle "myusuf3/numbers.vim" | |
Bundle 'Lokaltog/vim-powerline' | |
Bundle 'ervandew/supertab' | |
Bundle 'benmills/vimux' | |
Bundle 'tpope/vim-rails' | |
Bundle 'tpope/vim-bundler' | |
Bundle 'honza/snipmate-snippets' | |
Bundle 'jwhitley/vim-matchit' | |
filetype plugin indent on " required! | |
" Solarized | |
syntax enable | |
set background=dark | |
colorscheme solarized | |
" NERD Tree | |
nnoremap <leader>n :NERDTreeToggle .<CR> | |
" CtrlP | |
let g:ctrlp_map = '<c-p>' | |
let g:ctrlp_cmd = 'CtrlP' | |
" Vim Powerline | |
let g:Powerline_symbols = 'fancy' | |
set t_Co=256 | |
set laststatus=2 | |
" GUI configuration | |
set guifont=Inconsolata-dz\ for\ Powerline\:h13 | |
set guioptions-=rL | |
" Copy & Paste | |
set clipboard=unnamed | |
" Vimux | |
map <Leader>vp :VimuxPromptCommand<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment