Skip to content

Instantly share code, notes, and snippets.

@Davidslv
Created May 21, 2013 01:36
Show Gist options
  • Save Davidslv/5616984 to your computer and use it in GitHub Desktop.
Save Davidslv/5616984 to your computer and use it in GitHub Desktop.
Vim with Vundle
filetype off
set rtp+=~/.vim/bundle/vundle
call vundle#rc()
" General Configuration
set nocompatible " disable vi compatibility.
set history=256 " Number of things to remember in history.
set timeoutlen=250 " Time to wait after ESC (default causes an annoying delay
" Match and search
set hlsearch " highlight matches
set incsearch " incremental searching
set ignorecase " searches are case insensitive...
set smartcase " ... unless they contain at least one capital letter
" Formatting
set wildmode=longest,list " At command line, complete longest common string, then list alternatives.
set backspace=indent,eol,start " more powerful backspacing
set tabstop=2 " Set the default tabstop
set softtabstop=2
set expandtab " Make tabs into spaces (set by tabstop)
set smarttab " Smarter tab levels
set autoindent
syntax on " enable syntax
filetype plugin indent on " Automatically detect file types.
" Visual
set number " Line numbers off
set showmatch " Show matching brackets.
set matchtime=5 " Bracket blinking.
set visualbell " No blinking
set noerrorbells " No noise.
set laststatus=2 " Always show status line.
set ruler " Show ruler
set showcmd " Display an incomplete command in the lower right corner of the Vim window
set splitbelow
set splitright
" Plugins "
Bundle 'gmarik/vundle'
" Programming
Bundle "jQuery"
Bundle "rails.vim"
" Syntax highlight
Bundle "cucumber.zip"
Bundle "Markdown"
Bundle 'Sass'
" Git integration
Bundle "git.zip"
Bundle "fugitive.vim"
" Utility
Bundle "Align"
Bundle "SuperTab"
Bundle "file-line"
Bundle "Buffergator"
Bundle "repeat.vim"
Bundle "surround.vim"
Bundle "delimitMate.vim"
Bundle "speeddating.vim"
Bundle 'HTML-AutoCloseTag'
Bundle "git://github.com/kien/ctrlp.vim.git"
" FuzzyFinder
Bundle "L9"
Bundle "FuzzyFinder"
" Zoomwin
Bundle "ZoomWin"
" Ack
Bundle "ack.vim"
" tComment
Bundle "tComment"
" Tabular
Bundle 'Tabular'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment