Skip to content

Instantly share code, notes, and snippets.

@omgitsads
Created February 5, 2013 13:20
Show Gist options
  • Save omgitsads/4714403 to your computer and use it in GitHub Desktop.
Save omgitsads/4714403 to your computer and use it in GitHub Desktop.
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