-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc.bundles
82 lines (68 loc) · 1.89 KB
/
vimrc.bundles
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
if &compatible
set nocompatible
end
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 | source $MYVIMRC
endif
call plug#begin('~/.vim/bundle')
" Enhancement
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
" Plug 'pbrisbin/vim-mkdir'
" Plug 'christoomey/vim-run-interactive'
Plug 'godlygeek/tabular'
Plug 'tomtom/tcomment_vim'
" Plug 'vim-scripts/sudo.vim'
" Plug 'vim-scripts/lastpos.vim'
" Plug 'skwp/YankRing.vim'
Plug 'christoomey/vim-tmux-navigator'
Plug 'ntpeters/vim-better-whitespace'
" Plug 'MarcWeber/vim-addon-mw-utils'
" Plug 'tomtom/tlib_vim'
" Plug 'nathanaelkane/vim-indent-guides'
" Plug 'austintaylor/vim-indentobject'
Plug 'Yggdroot/indentLine'
Plug 'tpope/vim-endwise'
Plug 'tpope/vim-repeat'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-unimpaired'
Plug 'vim-scripts/BufOnly.vim'
" Plug 'AndrewRadev/splitjoin.vim'
Plug 'jiangmiao/auto-pairs'
Plug 'alvan/vim-closetag'
Plug 'junegunn/vim-easy-align'
" Plug 'junegunn/vim-emoji'
" Language
Plug 'sheerun/vim-polyglot'
Plug 'Chiel92/vim-autoformat'
" Plug 'mustache/vim-mustache-handlebars'
Plug 'duganchen/vim-soy'
Plug 'mattn/emmet-vim'
" Plug 'spf13/vim-preview'
" Plug 'pangloss/vim-javascript'
" Plug 'skammer/vim-css-color'
" Plug 'wookiehangover/jshint.vim'
" Auto-complete
Plug 'Shougo/neocomplete'
" Search
Plug 'easymotion/vim-easymotion'
Plug 'rking/ag.vim'
Plug 'vim-scripts/matchit.zip'
" Plug 'vim-scripts/greplace.vim'
" Project
Plug 'ctrlpvim/ctrlp.vim'
Plug 'FelikZ/ctrlp-py-matcher'
Plug 'scrooloose/nerdtree'
Plug 'scrooloose/syntastic'
" Git
Plug 'airblade/vim-gitgutter'
Plug 'tpope/vim-fugitive'
" Notes
" Plug 'xolox/vim-misc'
" Plug 'xolox/vim-notes'
if filereadable(expand("~/.vimrc.bundles.local"))
source ~/.vimrc.bundles.local
endif
call plug#end()