Created
May 2, 2012 16:57
-
-
Save bryanbibat/2578211 to your computer and use it in GitHub Desktop.
my gvim vimrc
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
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