vim/config/Vundle.vim

37 lines
1.2 KiB
VimL
Raw Normal View History

2016-12-14 18:09:47 +00:00
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
2017-01-12 10:06:53 +00:00
Plugin 'evidens/vim-twig'
Plugin 'tpope/vim-markdown'
Plugin 'suan/vim-instant-markdown'
Plugin 'dhruvasagar/vim-table-mode'
Plugin 'tpope/vim-haml'
Plugin 'christoomey/vim-tmux-navigator'
2016-12-14 19:53:27 +00:00
Plugin 'junegunn/vim-easy-align'
Plugin 'jelera/vim-javascript-syntax'
Plugin 'elzr/vim-json'
2016-12-14 18:09:47 +00:00
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