28 lines
907 B
VimL
28 lines
907 B
VimL
set nocompatible " be iMproved, required
|
|
filetype off " required
|
|
|
|
" set the runtime path to include Vundle and initialize
|
|
set rtp+=~/.vim/bundle/Vundle.vim
|
|
call vundle#begin()
|
|
" alternatively, pass a path where Vundle should install plugins
|
|
"call vundle#begin('~/some/path/here')
|
|
|
|
" let Vundle manage Vundle, required
|
|
Plugin 'SirVer/ultisnips'
|
|
Plugin 'jistr/vim-nerdtree-tabs'
|
|
Plugin 'Lokaltog/powerline'
|
|
Plugin 'shawncplus/phpcomplete.vim'
|
|
Plugin 'VundleVim/Vundle.vim'
|
|
Plugin 'tpope/vim-fugitive'
|
|
Plugin 'scrooloose/nerdtree'
|
|
Plugin 'Shougo/unite.vim'
|
|
Plugin 'terryma/vim-multiple-cursors'
|
|
Plugin 'airblade/vim-gitgutter'
|
|
" Plugin 'itchyny/lightline.vim'
|
|
Plugin 'vim-airline/vim-airline'
|
|
Plugin 'majutsushi/tagbar'
|
|
|
|
" All of your Plugins must be added before the following line
|
|
call vundle#end() " required
|
|
filetype plugin indent on " required
|