Last active
December 15, 2016 15:00
-
-
Save truetamtam/45061823275f263cf3c12cc65e54966c 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
filetype off " required | |
set rtp+=$HOME/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'VundleVim/Vundle.vim' | |
Plugin 'scrooloose/nerdtree' | |
Plugin 'ctrlpvim/ctrlp.vim' | |
Plugin 'rking/ag.vim' | |
Plugin 'skwp/greplace.vim' " search and replace | |
Plugin 'MarcWeber/vim-addon-mw-utils' " vim-snipmate dependency | |
Plugin 'tomtom/tlib_vim' " vim-snipmate dependency | |
Plugin 'garbas/vim-snipmate' " vim-snipmate | |
Plugin 'tpope/vim-surround' | |
" Plugin 'lyokha/vim-xkbswitch' | |
" Plugin 'ervandew/supertab' | |
Bundle 'mattn/webapi-vim' | |
Bundle 'mattn/gist-vim' | |
Bundle 'fatih/vim-go' | |
Plugin 'vim-airline/vim-airline' " Airline plugin | |
Plugin 'vim-airline/vim-airline-themes' " Airline plugin themes | |
Plugin 'jeetsukumaran/vim-buffergator' " Buffagator buffer plugin | |
Plugin 'tpope/vim-fugitive' " Git add (show branch, etc...) | |
" Plugin 'xterm-color-table.vim' " Airline plugin themes | |
" Plugin 'tpope/vim-vinegar' | |
" All of your Plugins must be added before the following line | |
call vundle#end() " required | |
filetype plugin indent on " required | |
" To ignore plugin indent changes, instead use: | |
"filetype plugin on | |
" | |
" Brief help | |
" :PluginList - lists configured plugins | |
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate | |
" :PluginSearch foo - searches for foo; append `!` to refresh local cache | |
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal | |
" | |
" see :h vundle for more details or wiki for FAQ | |
" Put your non-Plugin stuff after this line |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment