|
|
|
set nocompatible " be iMproved, required
|
|
|
|
filetype off " required
|
|
|
|
|
|
|
|
" set the runtime path to include Vundle and initialize
|
|
|
|
if has("win32")
|
|
|
|
set rtp+=$VIM/vimfiles/bundle/Vundle.vim
|
|
|
|
call vundle#begin('$VIM/vimfiles/bundle')
|
|
|
|
else
|
|
|
|
set rtp+=~/.vim/bundle/Vundle.vim
|
|
|
|
call vundle#begin()
|
|
|
|
endif
|
|
|
|
" alternatively, pass a path where Vundle should install plugins
|
|
|
|
"call vundle#begin('~/some/path/here')
|
|
|
|
|
|
|
|
" let Vundle manage Vundle, required
|
|
|
|
Plugin 'VundleVim/Vundle.vim'
|
|
|
|
|
|
|
|
" The following are examples of different formats supported.
|
|
|
|
" Keep Plugin commands between vundle#begin/end.
|
|
|
|
" plugin on GitHub repo
|
|
|
|
Plugin 'tpope/vim-fugitive'
|
|
|
|
" Plugin 'vim-perl/vim-perl'
|
|
|
|
Plugin 'godlygeek/tabular'
|
|
|
|
Plugin 'plasticboy/vim-markdown'
|
|
|
|
Plugin 'scrooloose/nerdtree'
|
|
|
|
Plugin 'scrooloose/nerdcommenter'
|
|
|
|
Plugin 'davidhalter/jedi-vim'
|
|
|
|
Plugin 'ervandew/supertab'
|
|
|
|
Plugin 'Raimondi/delimitMate'
|
|
|
|
Plugin 'tomasr/molokai'
|
|
|
|
"show tabs
|
|
|
|
Plugin 'nathanaelkane/vim-indent-guides'
|
|
|
|
Plugin 'vim-scripts/taglist.vim'
|
|
|
|
Plugin 'WolfgangMehner/vim-plugins'
|
|
|
|
" Plugin 'powerline/powerline', {'rtp': 'powerline/bindings/vim/'}
|
|
|
|
" Plugin 'Lokaltog/vim-powerline'
|
|
|
|
" Plugin 'bling/vim-airline'
|
|
|
|
|
|
|
|
" plugin from http://vim-scripts.org/vim/scripts.html
|
|
|
|
Plugin 'L9'
|
|
|
|
Plugin 'perl-support.vim'
|
|
|
|
Plugin 'christoomey/vim-tmux-navigator'
|
|
|
|
Plugin 'tpope/vim-surround'
|
|
|
|
Plugin 'vim-airline/vim-airline'
|
|
|
|
Plugin 'vim-airline/vim-airline-themes'
|
|
|
|
" syntax highlight for Dockerfile
|
|
|
|
Plugin 'ekalinin/Dockerfile.vim'
|
|
|
|
|
|
|
|
" Git plugin not hosted on GitHub
|
|
|
|
Plugin 'git://git.wincent.com/command-t.git'
|
|
|
|
|
|
|
|
call vundle#end() " required
|
|
|
|
filetype plugin indent on " required
|
|
|
|
|