-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplug.vimrc
56 lines (46 loc) · 1.72 KB
/
plug.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
" ----------------------------------------------------------------------------
" Plug
" ----------------------------------------------------------------------------
" Install vim-plug if we don't already have it
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
call plug#begin('~/.vim/plugged')
Plug 'kien/ctrlp.vim'
Plug 'scrooloose/nerdtree'
Plug 'scrooloose/nerdcommenter'
Plug 'fholgado/minibufexpl.vim'
Plug 'majutsushi/tagbar'
Plug 'luochen1990/rainbow'
Plug 'vim-airline/vim-airline'
Plug 'rizzatti/dash.vim'
"snipmate
Plug 'MarcWeber/vim-addon-mw-utils'
Plug 'tomtom/tlib_vim'
Plug 'garbas/vim-snipmate'
Plug 'honza/vim-snippets'
Plug 'editorconfig/editorconfig-vim'
Plug 'joonty/vdebug', {'for': ['php', 'python', 'ruby', 'perl']}
Plug 'valloric/youcompleteme', { 'do': './install.py' }
Plug 'mattn/emmet-vim', {'for': 'html'}
Plug 'othree/html5.vim', {'for': 'html'}
Plug 'scrooloose/syntastic'
Plug 'vim-pandoc/vim-pandoc', {'for': 'markdown'}
Plug 'vim-pandoc/vim-pandoc-syntax' , {'for': 'markdown'}
Plug 'vim-scripts/LargeFile'
Plug 'mxw/vim-jsx', {'for': 'javascript'}
Plug 'pangloss/vim-javascript', {'for': 'javascript'}
Plug 'tmhedberg/SimpylFold'
Plug 'rhysd/vim-grammarous', {'for': ['markdown', 'slide']}
Plug 'tpope/vim-fugitive'
Plug 'vim-scripts/hgrev'
Plug 'mileszs/ack.vim'
Plug 'rosenfeld/conque-term', {'for': 'python'}
Plug 'jmcantrell/vim-virtualenv', {'for': 'python'}
Plug 'nelstrom/vim-visual-star-search'
Plug 'fatih/vim-go', {'for': 'go'}
Plug 'zchee/vim-go-slide', {'for': 'slide'}
" Initialize plugin system
call plug#end()