Created
July 15, 2014 12:56
-
-
Save tobstarr/63bf61a1e8335e803d89 to your computer and use it in GitHub Desktop.
This file contains 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
" 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