Skip to content

Instantly share code, notes, and snippets.

@tobstarr
Created July 15, 2014 12:56
Show Gist options
  • Save tobstarr/63bf61a1e8335e803d89 to your computer and use it in GitHub Desktop.
Save tobstarr/63bf61a1e8335e803d89 to your computer and use it in GitHub Desktop.
" install vundle with
" mkdir -p $HOME/.vim/bundle
" git clone https://github.com/gmarik/Vundle.vim.git $HOME/.vim/bundle/Vundle.vim
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'kien/ctrlp.vim'
Plugin 'scrooloose/syntastic'
Plugin 'tpope/vim-abolish'
Plugin 'majutsushi/tagbar' " requires exuberant-ctags
Bundle 'mileszs/ack.vim' " requires e.g. the_silver_searcher or silversearcher-ag
call vundle#end() " required
filetype plugin indent on " required
syntax on
set nu
set list
set tabstop=2
set shiftwidth=2
set expandtab
set incsearch
set autoindent
let g:ackprg = 'ag --nogroup --nocolor --column'
map ,t :CtrlP .<CR>
map ,q :q<CR>
map ,s :source ~/.vimrc<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment