-
Notifications
You must be signed in to change notification settings - Fork 0
/
myPlugManage.vim
273 lines (241 loc) · 6.96 KB
/
myPlugManage.vim
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
call plug#begin('~/.vim/bundle')
"" where to store the plugins
"------------------
" Code Completions
"------------------
Plug 'Shougo/neocomplcache'
"Plug 'Shougo/neocomplete'
Plug 'ervandew/supertab'
"Plug 'honza/snipmate-snippets'
"""""""""""""""""""""""""""""""""""""""""""""""""""
" try anoother
" Plug 'scrooloose/snipmate-snippets'
" garbas is for vimL
Plug 'davidhalter/jedi-vim'
"Plug 'garbas/vim-snipmate'
Plug 'honza/vim-snippets'
"""""""""""""""""""""""""""""""""""""""""""""""""""
"python
"Plug 'mattn/webapi-vim'
Plug 'Raimondi/delimitMate'
"------ snipmate dependencies -------
Plug 'MarcWeber/vim-addon-mw-utils'
Plug 'tomtom/tlib_vim'
"-----------------
" Fast navigation
"-----------------
"Plug 'edsono/vim-matchit'
Plug 'jwhitley/vim-matchit'
Plug 'Lokaltog/vim-easymotion'
Plug 'justinmk/vim-sneak'
"--------------
" Fast editing
"--------------
Plug 'scrooloose/nerdcommenter'
"Plug 'sjl/gundo.vim'
Plug 'godlygeek/tabular'
Plug 'nathanaelkane/vim-indent-guides'
"--------------
" IDE features
"--------------
Plug 'scrooloose/nerdtree'
"Plug 'humiaozuzu/TabBar'
Plug 'majutsushi/tagbar'
Plug 'xolox/vim-easytags'" {{{1
Plug 'xolox/vim-misc'
Plug 'mileszs/ack.vim'
Plug 'rking/ag.vim'
Plug 'skwp/greplace.vim' " }}}1
"" file search tools
Plug 'kien/ctrlp.vim'
Plug 'tacahiroy/ctrlp-funky'
Plug 'Valloric/MatchTagAlways'
Plug 'szw/vim-maximizer'
"" status line
Plug 'Lokaltog/vim-powerline'" {{{1
Plug 'scrooloose/syntastic'
Plug 'bronson/vim-trailing-whitespace'
Plug 'brookhong/cscope.vim'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'airblade/vim-gitgutter'
Plug 'Xuyuanp/nerdtree-git-plugin'
"nerdtree }}}1
Plug 'ryanoasis/vim-devicons'
Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
Plug 'jistr/vim-nerdtree-tabs'
"--------------
" Color Schemes
"--------------
"Plug 'altercation/vim-colors-solarized' ;;需要时候再安装
Plug 'https://github.com/roosta/vim-srcery'" {{{1
Plug 'mhinz/vim-startify'
" }}}1
"marker
"Plug 'xsunsmile/showmarks'
Plug 'kshenoy/vim-signature'
"multicursor
Plug 'terryma/vim-multiple-cursors'
Plug 'nvie/vim-togglemouse'
Plug 'terryma/vim-expand-region'
Plug 'dimasg/vim-mark'
Plug 'dbmrq/vim-chalk'
Plug 'machakann/vim-highlightedyank'
"Plug 'dbmrq/vim-redacted'
"show repeated words,r
"Plug 'dbmrq/vim-ditto' ;; 感觉速度变慢 于是删掉
""support csv
"strength the NerdTree, multiTags with one NerdTree
" 通过ctrlp替换ctrl-space
"Plug 'vim-ctrlspace/vim-ctrlspace'
"strength the tarbar
"Plug 'xolox/vim-easytags'
"Plug 'xolox/vim-misc'
"Plug 'elentok/todo.vim'
":MRU
Plug 'vim-scripts/mru.vim'
Plug 'Shougo/unite.vim'
Plug 'Shougo/vimfiler.vim'
"Plug 'Shougo/vimproc.vim'
"sources for unite
Plug 'Shougo/unite-outline'
Plug 'Shougo/neomru.vim'
Plug 'sgur/unite-everything'
" Plug 'Shougo/vimproc.vim', {
" \ 'build' : {
" \ 'windows' : 'tools\\update-dll-mingw',
" \ 'cygwin' : 'make -f make_cygwin.mak',
" \ 'mac' : 'make',
" \ 'linux' : 'make',
" \ 'unix' : 'gmake',
" \ },
" \ } -
"
"
"" abbre
Plug 'chip/vim-fat-finger'
"Plug 'vim-scripts/Vim-R-plugin'
"Plug 'wdicarlo/vim-notebook' ;;; 有了vimwiki就不用阿勒
"" code align vertical bar
Plug 'Yggdroot/indentLine'
" modve the code textobject
Plug 'matze/vim-move'
"" update the operation of f and F t and T
Plug 'rhysd/clever-f.vim'
"" color to let you look better set termguicolors
Plug 'romainl/Apprentice'
"Plug 'itchyny/calendar.vim'
Plug 'mattn/calendar-vim'
Plug 'junegunn/vim-easy-align'
Plug 'junegunn/gv.vim'
Plug 'junegunn/goyo.vim'
Plug 'junegunn/limelight.vim'
Plug 'junegunn/vim-after-object'
Plug 'amix/vim-zenroom2'
"Plug 'junegunn/vim-github-dashboard'
" Multiple commands
"Plug 'junegunn/vim-github-dashboard'
"plantuml
Plug 'scrooloose/vim-slumlord'
Plug 'aklt/plantuml-syntax'
Plug 'tpope/vim-rhubarb'
Plug 'tpope/vim-sensible'
Plug 'tpope/vim-speeddating'
"git 1
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-repeat'
Plug 'tpope/vim-unimpaired'
Plug 'haya14busa/incsearch.vim'
Plug 'haya14busa/incsearch-easymotion.vim'
""for conventer
Plug 'haya14busa/incsearch-fuzzy.vim'
Plug 'haya14busa/vim-asterisk'
"" see your yawed part
Plug 'kana/vim-operator-user'
Plug 'haya14busa/vim-operator-flashy'
"" underline the word at the current current
"Plug 'itchyny/vim-cursorword'
Plug 'henrik/vim-indexed-search'
Plug 'AndrewRadev/splitjoin.vim'
" another kana object
Plug 'kana/vim-textobj-user'
Plug 'kana/vim-textobj-line'
Plug 'kana/vim-textobj-entire'
"" va` vi`
""Plug 'fvictorio/vim-textobj-backticks'
Plug 'jceb/vim-textobj-uri'
Plug 'kana/vim-textobj-fold'
"" copy filename
Plug 'AdamWhittingham/vim-copy-filename'
Plug 'will133/vim-dirdiff'
Plug 'vim-scripts/sketch.vim'
Plug 'hrj/vim-DrawIt'
"" Improve the nerd tree
"Plug 'Xuyuanp/nerdtree-git-plugin'
"Plug 'ryanoasis/nerd-fonts' "it should be download,not bundle
"Plug 'https://github.com/dracula/vim'
"Plug 'dracula/dracula-theme'
"-----------------------------------------------------------------------------------"
"" If you needed uncomment it!
"" language specified start---------------------------------------------------------"
"Plug 'vim-scripts/SQLComplete.vim'
"html
""------- web frontend ----------
"Plug 'othree/html5.vim'
"Plug 'mattn/emmet-vim'
" Plug 'tpope/vim-haml'
"Plug 'pangloss/vim-javascript'
"Plug 'kchmck/vim-coffee-script'
"Plug 'nono/jquery.vim'
" For java
" Plug 'yuratomo/java-api-complete'
" Plug 'yuratomo/java-api-javax'
" Plug 'yuratomo/java-api-org'
" Plug 'yuratomo/java-api-sun'
" Plug 'yuratomo/java-api-servlet2.3'
"Plug 'yuratomo/java-api-android'
" Plug 'yuratomo/java-api-junit'
"Plug 'artur-shaik/vim-javacomplete2'
"------- markup language -------
Plug 'tpope/vim-markdown'
Plug 'bronson/vim-trailing-whitespace'
Plug 'vim-scripts/txt.vim'
" Plug 'timcharper/textile.vim'
" ************************************************************
" ---------------------racket related plugin------------------
" Plug 'wlangstroth/vim-racket'
"Plug 'vim-scripts/scribble.vim'
" ---------------------racket related plugin------------------
" ************************************************************
" Plug 'vim-scripts/VimClojure'
" Plug 'rosstimson/scala-vim-support'
"matlab
Plug 'elmanuelito/vim-matlab-behave'
Plug 'tpope/vim-speeddating'
Plug 'jceb/vim-orgmode'
"Plug 'freitass/todo.txt-vim'
"Plug 'lervag/vimtex'
"Plug 'jcf/vim-latex'
"Plug 'lukerandall/haskellmode-vim'
Plug 'vim-perl/vim-perl'
Plug 'WolfgangMehner/vim-plugins'
"Plug 'artur-shaik/vim-javacomplete2'
"Plug 'kovisoft/slimv'
"Plug 'adimit/prolog.vim'
Plug 'kien/rainbow_parentheses.vim'
Plug 'chrisbra/csv.vim'
"Plug 'wannesm/wmgraphviz.vim'
Plug 'vim-scripts/gnuplot.vim'
Plug 'mdlerch/vim-gnuplot'
" R lanagage
"Plug 'jalvesaq/Nvim-R'
Plug 'vim-scripts/paredit.vim'
Plug 'rkulla/pydiction'
Plug 'vimwiki/vimwiki'
"clojure
"Plug 'tpope/vim-fireplace'
"" language specified end----------------------------------------------------------"
"-----------------------------------------------------------------------------------"
call plug#end()
filetype plugin indent on " required!