Skip to content

Instantly share code, notes, and snippets.

@bryanbibat
Created May 2, 2012 16:57
Show Gist options
  • Save bryanbibat/2578211 to your computer and use it in GitHub Desktop.
Save bryanbibat/2578211 to your computer and use it in GitHub Desktop.
my gvim vimrc
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
Bundle 'bzx/vim-theme-pack'
Bundle 'ap/vim-css-color'
Bundle 'scrooloose/nerdtree'
Bundle 'scrooloose/nerdcommenter'
Bundle 'git://git.wincent.com/command-t.git'
Bundle 'tpope/vim-fugitive'
Bundle 'tpope/vim-surround'
Bundle 'tpope/vim-endwise'
Bundle 'Lokaltog/vim-easymotion'
Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}
Bundle 'tpope/vim-rails'
Bundle 'tpope/vim-rake'
Bundle 'tpope/vim-cucumber'
Bundle 'tpope/vim-haml'
Bundle 'kchmck/vim-coffee-script'
Bundle 'pangloss/vim-javascript'
syntax on
set ts=2 sts=2 sw=2 expandtab
filetype plugin indent on
set showmode
nnoremap <F2> :set invpaste paste?<CR>
set pastetoggle=<F2>
set guioptions-=m
set guioptions-=T
set guioptions-=r
set lines=46 columns=180
set number
set ruler
set bs=2
set list
set listchars=tab:→\ ,eol:¬
set history=1000
nnoremap <leader>n :NERDTree .<CR>
set guifont=Inconsolata\ 10
colorscheme vividchalk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment