-
Notifications
You must be signed in to change notification settings - Fork 15
/
config.ini
3803 lines (3802 loc) · 235 KB
/
config.ini
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[bundles]
gundo = https://github.com/sjl/gundo.vim.git
snipmate = https://github.com/msanders/snipmate.vim.git
vim-bundle-mako = https://github.com/sophacles/vim-bundle-mako.git
vim-trailing-whitespace = https://github.com/bronson/vim-trailing-whitespace.git
nerdtree = https://github.com/scrooloose/nerdtree.git
syntastic = https://github.com/scrooloose/syntastic.git
jslint.vim = https://github.com/hallettj/jslint.vim.git
vim-less = https://github.com/groenewege/vim-less.git
[vimscripts]
pbcopy.vim = https://github.com/vim-scripts/pbcopy.vim.git
altera_sta.vim = https://github.com/vim-scripts/altera_sta.vim.git
cucumber.zip = https://github.com/vim-scripts/cucumber.zip.git
happy.vim = https://github.com/vim-scripts/happy.vim.git
php_check_syntax.vim = https://github.com/vim-scripts/php_check_syntax.vim.git
toothpik.vim = https://github.com/vim-scripts/toothpik.vim.git
expmod = https://github.com/vim-scripts/Expmod.git
gtkfilechooser = https://github.com/vim-scripts/GtkFileChooser.git
xfst-syntax-file = https://github.com/vim-scripts/XFST-syntax-file.git
morse.vim = https://github.com/vim-scripts/morse.vim.git
yellow = https://github.com/vim-scripts/yellow.git
pylonscommand = https://github.com/vim-scripts/PylonsCommand.git
vim-rpsl = https://github.com/vim-scripts/vim-rpsl.git
vimxmms2 = https://github.com/vim-scripts/vimxmms2.git
promela.vim = https://github.com/vim-scripts/promela.vim.git
sip.vim = https://github.com/vim-scripts/sip.vim.git
trinity.vim = https://github.com/vim-scripts/trinity.vim.git
pdv--phpdocumentor-for-vim = https://github.com/vim-scripts/PDV--phpDocumentor-for-Vim.git
operator-camelize = https://github.com/vim-scripts/operator-camelize.git
rectcut = https://github.com/vim-scripts/rectcut.git
nour.vim = https://github.com/vim-scripts/nour.vim.git
pida = https://github.com/vim-scripts/Pida.git
otherfile.vim = https://github.com/vim-scripts/otherfile.vim.git
buffergrep = https://github.com/vim-scripts/buffergrep.git
swap = https://github.com/vim-scripts/swap.git
easymotion = https://github.com/vim-scripts/EasyMotion.git
nxc.vim = https://github.com/vim-scripts/nxc.vim.git
ren = https://github.com/vim-scripts/ren.git
fgl.vim = https://github.com/vim-scripts/fgl.vim.git
mail.tgz = https://github.com/vim-scripts/mail.tgz.git
emacsmode = https://github.com/vim-scripts/emacsmode.git
vdlgbx.dll = https://github.com/vim-scripts/VDLGBX.DLL.git
vim-blog = https://github.com/vim-scripts/Vim-Blog.git
ttcn-ftplugin = https://github.com/vim-scripts/ttcn-ftplugin.git
void = https://github.com/vim-scripts/void.git
vimgtd--nianyang = https://github.com/vim-scripts/vimgtd--nianyang.git
textgenshi.vim = https://github.com/vim-scripts/textgenshi.vim.git
vive.vim = https://github.com/vim-scripts/Vive.vim.git
kib_plastic = https://github.com/vim-scripts/kib_plastic.git
textlink.vim = https://github.com/vim-scripts/textlink.vim.git
doctest-syntax = https://github.com/vim-scripts/doctest-syntax.git
lightweightarray.vim = https://github.com/vim-scripts/lightWeightArray.vim.git
indentruby.vim = https://github.com/vim-scripts/indentruby.vim.git
vim-erlang-skeleteons = https://github.com/vim-scripts/vim-erlang-skeleteons.git
remcmd.vim = https://github.com/vim-scripts/remcmd.vim.git
open-associated-programs = https://github.com/vim-scripts/Open-associated-programs.git
todotxt.vim = https://github.com/vim-scripts/todotxt.vim.git
buffoptions.vim = https://github.com/vim-scripts/buffoptions.vim.git
nant-syntax = https://github.com/vim-scripts/NAnt-syntax.git
darkslategray.vim = https://github.com/vim-scripts/darkslategray.vim.git
cccs.vim = https://github.com/vim-scripts/cccs.vim.git
commenter = https://github.com/vim-scripts/commenter.git
legiblelight = https://github.com/vim-scripts/legiblelight.git
html-macros.vim = https://github.com/vim-scripts/html-macros.vim.git
phoenity-discontinued = https://github.com/vim-scripts/Phoenity-discontinued.git
reimin = https://github.com/vim-scripts/reimin.git
motus.vim = https://github.com/vim-scripts/motus.vim.git
cg.vim = https://github.com/vim-scripts/cg.vim.git
up.vim = https://github.com/vim-scripts/up.vim.git
tcl.vim--smithfield-indent = https://github.com/vim-scripts/tcl.vim--smithfield-indent.git
wikilink = https://github.com/vim-scripts/wikilink.git
oasis.vim = https://github.com/vim-scripts/oasis.vim.git
tagmatips = https://github.com/vim-scripts/TagmaTips.git
jellybeans.vim = https://github.com/vim-scripts/jellybeans.vim.git
quilt = https://github.com/vim-scripts/quilt.git
altercmd = https://github.com/vim-scripts/altercmd.git
ftpluginruby.vim = https://github.com/vim-scripts/ftpluginruby.vim.git
project-browser-or-file-explorer-for-vim = https://github.com/vim-scripts/Project-Browser-or-File-explorer-for-vim.git
c.vim--schellong = https://github.com/vim-scripts/c.vim--Schellong.git
stackoverflow.vim = https://github.com/vim-scripts/stackoverflow.vim.git
bugfixes-to-vim-indent-for-verilog = https://github.com/vim-scripts/bugfixes-to-vim-indent-for-verilog.git
cssvar = https://github.com/vim-scripts/cssvar.git
lastpos.vim = https://github.com/vim-scripts/lastpos.vim.git
jsonvim = https://github.com/vim-scripts/jsonvim.git
lua_omni = https://github.com/vim-scripts/lua_omni.git
tango-colour-scheme = https://github.com/vim-scripts/Tango-colour-scheme.git
gitview = https://github.com/vim-scripts/gitview.git
ucompleteme = https://github.com/vim-scripts/ucompleteme.git
nginx.vim = https://github.com/vim-scripts/nginx.vim.git
neutron.vim = https://github.com/vim-scripts/neutron.vim.git
roo.vim = https://github.com/vim-scripts/roo.vim.git
asm8051.vim = https://github.com/vim-scripts/asm8051.vim.git
dictionary = https://github.com/vim-scripts/Dictionary.git
enhcommentify.vim = https://github.com/vim-scripts/EnhCommentify.vim.git
matrix.vim = https://github.com/vim-scripts/matrix.vim.git
regredir.vim = https://github.com/vim-scripts/regRedir.vim.git
srecord.vim = https://github.com/vim-scripts/srecord.vim.git
ruby-matchit = https://github.com/vim-scripts/ruby-matchit.git
logpad.vim = https://github.com/vim-scripts/logpad.vim.git
listtag = https://github.com/vim-scripts/listtag.git
perlprove.vim = https://github.com/vim-scripts/perlprove.vim.git
plsql.vim = https://github.com/vim-scripts/plsql.vim.git
java_apidoc.vim = https://github.com/vim-scripts/java_apidoc.vim.git
hex.vim = https://github.com/vim-scripts/hex.vim.git
varrays = https://github.com/vim-scripts/Varrays.git
shell_it = https://github.com/vim-scripts/shell_it.git
cream-capitalization = https://github.com/vim-scripts/cream-capitalization.git
desc.vim = https://github.com/vim-scripts/desc.vim.git
nimrod.vim = https://github.com/vim-scripts/nimrod.vim.git
codeoverview = https://github.com/vim-scripts/CodeOverview.git
presets = https://github.com/vim-scripts/presets.git
winfastfind = https://github.com/vim-scripts/WinFastFind.git
valgrind.vim = https://github.com/vim-scripts/valgrind.vim.git
auctex.vim = https://github.com/vim-scripts/auctex.vim.git
gvcolors = https://github.com/vim-scripts/GVColors.git
newlisp = https://github.com/vim-scripts/newlisp.git
spectro.vim = https://github.com/vim-scripts/spectro.vim.git
vcard-syntax = https://github.com/vim-scripts/VCard-syntax.git
daemon_saver.vim = https://github.com/vim-scripts/daemon_saver.vim.git
tplugin = https://github.com/vim-scripts/tplugin.git
cream-numberlines = https://github.com/vim-scripts/cream-numberlines.git
leo256 = https://github.com/vim-scripts/leo256.git
dual.vim = https://github.com/vim-scripts/dual.vim.git
wordlist.vim = https://github.com/vim-scripts/wordlist.vim.git
operator-reverse = https://github.com/vim-scripts/operator-reverse.git
spell.vim = https://github.com/vim-scripts/spell.vim.git
template-file-loader = https://github.com/vim-scripts/template-file-loader.git
fasm-compiler = https://github.com/vim-scripts/fasm-compiler.git
changed = https://github.com/vim-scripts/Changed.git
cmakeref = https://github.com/vim-scripts/cmakeref.git
mantip = https://github.com/vim-scripts/mantip.git
ledger.vim = https://github.com/vim-scripts/ledger.vim.git
urilib = https://github.com/vim-scripts/urilib.git
wombat256.vim = https://github.com/vim-scripts/wombat256.vim.git
lisper.vim = https://github.com/vim-scripts/Lisper.vim.git
compiler.tar.gz = https://github.com/vim-scripts/compiler.tar.gz.git
python.vim--herzog = https://github.com/vim-scripts/python.vim--Herzog.git
lbnf.vim = https://github.com/vim-scripts/lbnf.vim.git
xhtml-1.0-strict-help-file = https://github.com/vim-scripts/XHTML-1.0-strict-help-file.git
utl.vim = https://github.com/vim-scripts/utl.vim.git
gvim-pdfsync = https://github.com/vim-scripts/gvim-pdfsync.git
shadow.vim = https://github.com/vim-scripts/shadow.vim.git
midnight2.vim = https://github.com/vim-scripts/midnight2.vim.git
formatvim = https://github.com/vim-scripts/formatvim.git
rst-tables = https://github.com/vim-scripts/RST-Tables.git
tskeleton = https://github.com/vim-scripts/tSkeleton.git
crefvim = https://github.com/vim-scripts/CRefVim.git
sjump.vim = https://github.com/vim-scripts/sjump.vim.git
infobasic-set-syntax-ftdetect-ftplugi = https://github.com/vim-scripts/Infobasic-Set-Syntax-FTDetect-FTPlugi.git
replace = https://github.com/vim-scripts/replace.git
xterm-color-table.vim = https://github.com/vim-scripts/xterm-color-table.vim.git
cream-statusline-prototype = https://github.com/vim-scripts/cream-statusline-prototype.git
ldap.vim = https://github.com/vim-scripts/ldap.vim.git
incredibuild.vim = https://github.com/vim-scripts/IncrediBuild.vim.git
doc.vim = https://github.com/vim-scripts/doc.vim.git
xemacs-mouse-drag-copy = https://github.com/vim-scripts/xemacs-mouse-drag-copy.git
tgpg = https://github.com/vim-scripts/tGpg.git
pmd.vim = https://github.com/vim-scripts/pmd.vim.git
lycosaexplorer = https://github.com/vim-scripts/LycosaExplorer.git
robinhood.vim = https://github.com/vim-scripts/robinhood.vim.git
teraterm = https://github.com/vim-scripts/teraterm.git
st20-compiler-plugin = https://github.com/vim-scripts/ST20-compiler-plugin.git
mflrename = https://github.com/vim-scripts/mflrename.git
agtd = https://github.com/vim-scripts/AGTD.git
fanfou.vim = https://github.com/vim-scripts/Fanfou.vim.git
gpg.vim = https://github.com/vim-scripts/gpg.vim.git
simplefold = https://github.com/vim-scripts/simplefold.git
github-theme = https://github.com/vim-scripts/github-theme.git
xmlpretty = https://github.com/vim-scripts/XmlPretty.git
preview = https://github.com/vim-scripts/preview.git
nightwish.vim = https://github.com/vim-scripts/nightwish.vim.git
cscope-wrapper = https://github.com/vim-scripts/cscope-wrapper.git
textobj-fatpack = https://github.com/vim-scripts/textobj-fatpack.git
actionscript.vim--leider = https://github.com/vim-scripts/actionscript.vim--Leider.git
genshi.vim = https://github.com/vim-scripts/genshi.vim.git
translateit = https://github.com/vim-scripts/TranslateIt.git
phrase.vim = https://github.com/vim-scripts/phrase.vim.git
ywvim = https://github.com/vim-scripts/ywvim.git
edc-support = https://github.com/vim-scripts/edc-support.git
latex-text-formatter = https://github.com/vim-scripts/Latex-Text-Formatter.git
wc.vim--jcline = https://github.com/vim-scripts/wc.vim--jcline.git
editjava = https://github.com/vim-scripts/EditJava.git
des3.vim = https://github.com/vim-scripts/des3.vim.git
linecommenter = https://github.com/vim-scripts/LineCommenter.git
doxygen-support.vim = https://github.com/vim-scripts/doxygen-support.vim.git
htmlmap = https://github.com/vim-scripts/htmlmap.git
beautiful-pastebin = https://github.com/vim-scripts/beautiful-pastebin.git
lazarus = https://github.com/vim-scripts/lazarus.git
editsimilar = https://github.com/vim-scripts/EditSimilar.git
beauty256 = https://github.com/vim-scripts/beauty256.git
pit-configuration = https://github.com/vim-scripts/Pit-Configuration.git
todolist.vim--talevich = https://github.com/vim-scripts/todolist.vim--Talevich.git
comment-tools = https://github.com/vim-scripts/Comment-Tools.git
vhdlnav = https://github.com/vim-scripts/VhdlNav.git
diffchanges.vim = https://github.com/vim-scripts/diffchanges.vim.git
cdargs = https://github.com/vim-scripts/cdargs.git
autoincludex.vim = https://github.com/vim-scripts/autoincludex.vim.git
tdvim_folddigest = https://github.com/vim-scripts/tdvim_FoldDigest.git
allfold = https://github.com/vim-scripts/allfold.git
rackup = https://github.com/vim-scripts/Rackup.git
mh = https://github.com/vim-scripts/mh.git
file-local-variables = https://github.com/vim-scripts/File-local-variables.git
filetype.vim = https://github.com/vim-scripts/filetype.vim.git
tcl_snit.vim = https://github.com/vim-scripts/tcl_snit.vim.git
locateopen = https://github.com/vim-scripts/LocateOpen.git
bash-support.vim = https://github.com/vim-scripts/bash-support.vim.git
searchfold = https://github.com/vim-scripts/SearchFold.git
qmake--syntax.vim = https://github.com/vim-scripts/qmake--syntax.vim.git
msvc2003 = https://github.com/vim-scripts/msvc2003.git
noweb.vim = https://github.com/vim-scripts/noweb.vim.git
scons.vim = https://github.com/vim-scripts/scons.vim.git
cyclecolor = https://github.com/vim-scripts/CycleColor.git
hlint = https://github.com/vim-scripts/hlint.git
sharp-plugin-added = https://github.com/vim-scripts/sharp-Plugin-Added.git
sqlutilities = https://github.com/vim-scripts/SQLUtilities.git
vimtap = https://github.com/vim-scripts/VimTAP.git
latex_pt = https://github.com/vim-scripts/latex_pt.git
colorpalette.vim = https://github.com/vim-scripts/colorpalette.vim.git
mizore = https://github.com/vim-scripts/Mizore.git
expand-template = https://github.com/vim-scripts/Expand-Template.git
surveyor = https://github.com/vim-scripts/Surveyor.git
cf.vim--severinghaus = https://github.com/vim-scripts/cf.vim--Severinghaus.git
stata.vim = https://github.com/vim-scripts/stata.vim.git
vikitasks = https://github.com/vim-scripts/vikitasks.git
tag-signature-balloons = https://github.com/vim-scripts/Tag-Signature-Balloons.git
tagmenu = https://github.com/vim-scripts/tagMenu.git
cpan.vim = https://github.com/vim-scripts/cpan.vim.git
cvsmenu.vim-updated = https://github.com/vim-scripts/cvsmenu.vim-updated.git
vs-like-class-completion = https://github.com/vim-scripts/VS-like-Class-Completion.git
mapfinder = https://github.com/vim-scripts/MapFinder.git
togfullscreen.vim = https://github.com/vim-scripts/TogFullscreen.vim.git
nightvision = https://github.com/vim-scripts/NightVision.git
jay-syntax = https://github.com/vim-scripts/jay-syntax.git
actionscript = https://github.com/vim-scripts/ActionScript.git
toxic = https://github.com/vim-scripts/Toxic.git
javaaspect = https://github.com/vim-scripts/JavaAspect.git
writebackup = https://github.com/vim-scripts/writebackup.git
ddldbl.vim = https://github.com/vim-scripts/ddldbl.vim.git
vim-task-org = https://github.com/vim-scripts/vim-task-org.git
dotnet-dictionaries = https://github.com/vim-scripts/Dotnet-Dictionaries.git
apidock.vim = https://github.com/vim-scripts/apidock.vim.git
fpc.vim = https://github.com/vim-scripts/fpc.vim.git
elise.vim = https://github.com/vim-scripts/elise.vim.git
find_in_files = https://github.com/vim-scripts/find_in_files.git
closetag.vim = https://github.com/vim-scripts/closetag.vim.git
checksum.vim = https://github.com/vim-scripts/checksum.vim.git
mathematica-syntax-file = https://github.com/vim-scripts/Mathematica-Syntax-File.git
c_epita = https://github.com/vim-scripts/C_Epita.git
hybridevel = https://github.com/vim-scripts/hybridevel.git
textformat = https://github.com/vim-scripts/TextFormat.git
writebackuptoadjacentdir = https://github.com/vim-scripts/writebackupToAdjacentDir.git
foo.vim = https://github.com/vim-scripts/foo.vim.git
test.zip = https://github.com/vim-scripts/test.zip.git
head.vim = https://github.com/vim-scripts/head.vim.git
apt-complete.vim = https://github.com/vim-scripts/apt-complete.vim.git
tobase = https://github.com/vim-scripts/tobase.git
search-unfold = https://github.com/vim-scripts/Search-unFold.git
msdn_help.vim = https://github.com/vim-scripts/msdn_help.vim.git
ku-quickfix = https://github.com/vim-scripts/ku-quickfix.git
enzyme.vim = https://github.com/vim-scripts/enzyme.vim.git
ptl.vim = https://github.com/vim-scripts/ptl.vim.git
specky = https://github.com/vim-scripts/Specky.git
relativize = https://github.com/vim-scripts/Relativize.git
nodiff.vim = https://github.com/vim-scripts/nodiff.vim.git
csharp.vim = https://github.com/vim-scripts/csharp.vim.git
darkzen-color-scheme = https://github.com/vim-scripts/DarkZen-Color-Scheme.git
ruby-menu.vim = https://github.com/vim-scripts/ruby-menu.vim.git
vimdb.vim = https://github.com/vim-scripts/vimdb.vim.git
railstab.vim = https://github.com/vim-scripts/railstab.vim.git
xsl-fo = https://github.com/vim-scripts/xsl-fo.git
musicbox.vim = https://github.com/vim-scripts/musicbox.vim.git
tex.vim--fisher = https://github.com/vim-scripts/tex.vim--Fisher.git
syntaxudev.vim = https://github.com/vim-scripts/syntaxudev.vim.git
updatemoddate.vim = https://github.com/vim-scripts/UpdateModDate.vim.git
chela_light = https://github.com/vim-scripts/chela_light.git
eregex.vim = https://github.com/vim-scripts/eregex.vim.git
tagsetting.vim = https://github.com/vim-scripts/tagSetting.vim.git
af.vim = https://github.com/vim-scripts/af.vim.git
slang_syntax = https://github.com/vim-scripts/slang_syntax.git
qcl-syntax-hilighting = https://github.com/vim-scripts/QCL-syntax-hilighting.git
oz.vim = https://github.com/vim-scripts/oz.vim.git
sqlplus.vim--rey = https://github.com/vim-scripts/sqlplus.vim--Rey.git
skk.vim-b = https://github.com/vim-scripts/skk.vim-B.git
understated = https://github.com/vim-scripts/understated.git
tabpage.vim = https://github.com/vim-scripts/tabpage.vim.git
nsis.vim = https://github.com/vim-scripts/nsis.vim.git
vimconfig = https://github.com/vim-scripts/vimconfig.git
elinks.vim = https://github.com/vim-scripts/elinks.vim.git
2htmlj = https://github.com/vim-scripts/2htmlj.git
compilerpython.vim--wolfson = https://github.com/vim-scripts/compilerpython.vim--Wolfson.git
unicodeswitch.vim = https://github.com/vim-scripts/unicodeswitch.vim.git
to-upper-case-case-changer = https://github.com/vim-scripts/To-Upper-case-case-changer.git
donbass.vim = https://github.com/vim-scripts/donbass.vim.git
cmdlinecompl.vim = https://github.com/vim-scripts/CmdlineCompl.vim.git
indent-motion = https://github.com/vim-scripts/indent-motion.git
camlanot.vim = https://github.com/vim-scripts/camlanot.vim.git
chef.vim = https://github.com/vim-scripts/chef.vim.git
matchtag = https://github.com/vim-scripts/MatchTag.git
gettext-po-file-compiler = https://github.com/vim-scripts/Gettext-PO-file-compiler.git
trimblank = https://github.com/vim-scripts/TrimBlank.git
mophiadark = https://github.com/vim-scripts/mophiaDark.git
bruce.vim = https://github.com/vim-scripts/bruce.vim.git
colornames = https://github.com/vim-scripts/colornames.git
256-grayvim = https://github.com/vim-scripts/256-grayvim.git
removeifdef = https://github.com/vim-scripts/RemoveIfdef.git
cream-replacemulti = https://github.com/vim-scripts/cream-replacemulti.git
cobol.zip = https://github.com/vim-scripts/cobol.zip.git
modelica = https://github.com/vim-scripts/modelica.git
sql_iabbr.vim = https://github.com/vim-scripts/sql_iabbr.vim.git
vimrepress = https://github.com/vim-scripts/VimRepress.git
html_french = https://github.com/vim-scripts/html_french.git
tex.vim = https://github.com/vim-scripts/tex.vim.git
polycl.vim = https://github.com/vim-scripts/polycl.vim.git
color_toon = https://github.com/vim-scripts/color_toon.git
sparc.vim = https://github.com/vim-scripts/sparc.vim.git
zencoding.vim = https://github.com/vim-scripts/ZenCoding.vim.git
grails-vim = https://github.com/vim-scripts/grails-vim.git
switchext = https://github.com/vim-scripts/SwitchExt.git
txt2tags = https://github.com/vim-scripts/txt2tags.git
openrel.vim = https://github.com/vim-scripts/openrel.vim.git
systemverilog.vim = https://github.com/vim-scripts/systemverilog.vim.git
pac.vim = https://github.com/vim-scripts/pac.vim.git
mailsig = https://github.com/vim-scripts/mailsig.git
blowfish.vim = https://github.com/vim-scripts/blowfish.vim.git
sadic.tgz = https://github.com/vim-scripts/sadic.tgz.git
indentconsistencycopautocmds = https://github.com/vim-scripts/IndentConsistencyCopAutoCmds.git
inkpot = https://github.com/vim-scripts/inkpot.git
blockhl2.vim = https://github.com/vim-scripts/blockhl2.vim.git
access-sql-syntax-file = https://github.com/vim-scripts/Access-SQL-Syntax-file.git
lustyjuggler = https://github.com/vim-scripts/LustyJuggler.git
dawn = https://github.com/vim-scripts/dawn.git
matchparenpp = https://github.com/vim-scripts/matchparenpp.git
tagmanager-beta = https://github.com/vim-scripts/TagManager-BETA.git
vim-rpcpaste = https://github.com/vim-scripts/vim-rpcpaste.git
tiger.vim-syntax = https://github.com/vim-scripts/tiger.vim-syntax.git
midnight.vim = https://github.com/vim-scripts/midnight.vim.git
gcov-plugin = https://github.com/vim-scripts/GCov-plugin.git
window-sizes = https://github.com/vim-scripts/Window-Sizes.git
smp = https://github.com/vim-scripts/smp.git
unmswin.vim = https://github.com/vim-scripts/unmswin.vim.git
avrasm.vim = https://github.com/vim-scripts/avrasm.vim.git
rtorrent-syntax-file = https://github.com/vim-scripts/rtorrent-syntax-file.git
zmrok = https://github.com/vim-scripts/Zmrok.git
amethyst = https://github.com/vim-scripts/Amethyst.git
javadoc.vim = https://github.com/vim-scripts/javaDoc.vim.git
phoneticvisual-hebrew-keyboard-mapphone = https://github.com/vim-scripts/phoneticvisual-hebrew-keyboard-mapphone.git
searchinbuffers.vim = https://github.com/vim-scripts/SearchInBuffers.vim.git
rcode = https://github.com/vim-scripts/RCode.git
cmaxx = https://github.com/vim-scripts/cmaxx.git
tablatex = https://github.com/vim-scripts/TabLaTeX.git
ssa.vim = https://github.com/vim-scripts/ssa.vim.git
vim-addon-signs = https://github.com/vim-scripts/vim-addon-signs.git
projtags.vim = https://github.com/vim-scripts/projtags.vim.git
sqlcomplete.vim = https://github.com/vim-scripts/SQLComplete.vim.git
showfunc.vim--nianyang = https://github.com/vim-scripts/ShowFunc.vim--nianyang.git
simple-color-scheme = https://github.com/vim-scripts/Simple-Color-Scheme.git
dmd = https://github.com/vim-scripts/dmd.git
loadtags = https://github.com/vim-scripts/loadtags.git
charged-256.vim = https://github.com/vim-scripts/charged-256.vim.git
putty = https://github.com/vim-scripts/putty.git
omnitags = https://github.com/vim-scripts/OmniTags.git
cvsdiff.vim = https://github.com/vim-scripts/cvsdiff.vim.git
r-macosx = https://github.com/vim-scripts/R-MacOSX.git
pw = https://github.com/vim-scripts/pw.git
hdl_plugin-indent = https://github.com/vim-scripts/hdl_plugin-indent.git
apdl.vim = https://github.com/vim-scripts/apdl.vim.git
redhawk-vim-plugin = https://github.com/vim-scripts/Redhawk-Vim-Plugin.git
vim-online = https://github.com/vim-scripts/vim-online.git
qnamebuf = https://github.com/vim-scripts/qnamebuf.git
tabasco = https://github.com/vim-scripts/tabasco.git
satori-color-scheme = https://github.com/vim-scripts/Satori-Color-Scheme.git
pli-tools = https://github.com/vim-scripts/PLI-Tools.git
adaryn.vim = https://github.com/vim-scripts/Adaryn.vim.git
insertchar = https://github.com/vim-scripts/InsertChar.git
miranda-syntax-highlighting = https://github.com/vim-scripts/Miranda-syntax-highlighting.git
vimsizer = https://github.com/vim-scripts/vimsizer.git
executevimscript = https://github.com/vim-scripts/executevimscript.git
deb.vim = https://github.com/vim-scripts/deb.vim.git
tex_mini.vim = https://github.com/vim-scripts/tex_mini.vim.git
bookmarks.vim = https://github.com/vim-scripts/bookmarks.vim.git
ruby-single-test = https://github.com/vim-scripts/Ruby-Single-Test.git
colorize.vim = https://github.com/vim-scripts/colorize.vim.git
ri-viewer = https://github.com/vim-scripts/ri-viewer.git
greputil.vim = https://github.com/vim-scripts/greputil.vim.git
lbufwin = https://github.com/vim-scripts/LBufWin.git
industrial = https://github.com/vim-scripts/industrial.git
vimirc.vim = https://github.com/vim-scripts/VimIRC.vim.git
mappinggroup.vim = https://github.com/vim-scripts/mappinggroup.vim.git
automaticlatexplugin = https://github.com/vim-scripts/AutomaticLaTexPlugin.git
myfold.vim = https://github.com/vim-scripts/myfold.vim.git
aux2tags.vim = https://github.com/vim-scripts/aux2tags.vim.git
blugrine = https://github.com/vim-scripts/blugrine.git
timstamp.vim = https://github.com/vim-scripts/timstamp.vim.git
hexsearch.vim = https://github.com/vim-scripts/hexsearch.vim.git
twitvim = https://github.com/vim-scripts/TwitVim.git
esperanto = https://github.com/vim-scripts/esperanto.git
textmarker = https://github.com/vim-scripts/TextMarker.git
vimspy = https://github.com/vim-scripts/VimSpy.git
vbnet.vim = https://github.com/vim-scripts/vbnet.vim.git
mail_cc.set = https://github.com/vim-scripts/Mail_cc.set.git
prefixer.vim = https://github.com/vim-scripts/prefixer.vim.git
twilight256.vim = https://github.com/vim-scripts/twilight256.vim.git
candy.vim = https://github.com/vim-scripts/candy.vim.git
selection_eval.vim = https://github.com/vim-scripts/selection_eval.vim.git
dtdmenu = https://github.com/vim-scripts/dtdmenu.git
clevercss.vim = https://github.com/vim-scripts/clevercss.vim.git
cmdline-increment.vim = https://github.com/vim-scripts/cmdline-increment.vim.git
sqlldr.vim = https://github.com/vim-scripts/sqlldr.vim.git
neverland.vim--all-colorschemes-suck = https://github.com/vim-scripts/neverland.vim--All-colorschemes-suck.git
neco-look = https://github.com/vim-scripts/neco-look.git
macro.vim = https://github.com/vim-scripts/macro.vim.git
bwhomeendadv.vim = https://github.com/vim-scripts/bwHomeEndAdv.vim.git
unibasic.vim = https://github.com/vim-scripts/unibasic.vim.git
d.vim-indent = https://github.com/vim-scripts/d.vim-indent.git
russian-menu-translation = https://github.com/vim-scripts/russian-menu-translation.git
webpreview = https://github.com/vim-scripts/webpreview.git
text-especially-latex-formatter = https://github.com/vim-scripts/Text-Especially-LaTeX-Formatter.git
phpfolding.vim = https://github.com/vim-scripts/phpfolding.vim.git
puppet-syntax-highlighting = https://github.com/vim-scripts/Puppet-Syntax-Highlighting.git
syntax-highlighting-for-tintinttpp = https://github.com/vim-scripts/syntax-highlighting-for-tintinttpp.git
activity-log = https://github.com/vim-scripts/activity-log.git
idlang.vim = https://github.com/vim-scripts/idlang.vim.git
latextags = https://github.com/vim-scripts/latextags.git
edifile.vim = https://github.com/vim-scripts/edifile.vim.git
resolv.conf-syntax = https://github.com/vim-scripts/resolv.conf-syntax.git
ruby-snippets = https://github.com/vim-scripts/Ruby-Snippets.git
pyflakes = https://github.com/vim-scripts/pyflakes.git
tree = https://github.com/vim-scripts/tree.git
nagios-syntax = https://github.com/vim-scripts/nagios-syntax.git
kiwi.vim = https://github.com/vim-scripts/kiwi.vim.git
rdf-namespace-complete = https://github.com/vim-scripts/RDF-Namespace-complete.git
chordpro.vim = https://github.com/vim-scripts/chordpro.vim.git
idle = https://github.com/vim-scripts/IDLE.git
allout.vim = https://github.com/vim-scripts/allout.vim.git
ms-word-from-vim = https://github.com/vim-scripts/MS-Word-from-VIM.git
gnupg = https://github.com/vim-scripts/gnupg.git
nightshade.vim = https://github.com/vim-scripts/nightshade.vim.git
ttrcodeassistor = https://github.com/vim-scripts/TTrCodeAssistor.git
brookstream = https://github.com/vim-scripts/brookstream.git
ldraw.vim = https://github.com/vim-scripts/ldraw.vim.git
screenplay = https://github.com/vim-scripts/screenplay.git
makedoxygencomment = https://github.com/vim-scripts/MakeDoxygenComment.git
savesigns = https://github.com/vim-scripts/SaveSigns.git
vft--vim-form-toolkit = https://github.com/vim-scripts/VFT--VIM-Form-Toolkit.git
taghighlight = https://github.com/vim-scripts/TagHighlight.git
visualctrlg = https://github.com/vim-scripts/visualctrlg.git
dbgp-client--lancien = https://github.com/vim-scripts/DBGp-client--Lancien.git
chrome-syntax-script = https://github.com/vim-scripts/Chrome-syntax-script.git
nsis-2.0--syntax = https://github.com/vim-scripts/NSIS-2.0--Syntax.git
sherlock.vim = https://github.com/vim-scripts/sherlock.vim.git
mint = https://github.com/vim-scripts/mint.git
ftplugin-for-calendar = https://github.com/vim-scripts/ftplugin-for-Calendar.git
skittles-dark = https://github.com/vim-scripts/Skittles-Dark.git
indentconsistencycop = https://github.com/vim-scripts/IndentConsistencyCop.git
boost.vim = https://github.com/vim-scripts/boost.vim.git
php_funcinfo.vim = https://github.com/vim-scripts/php_funcinfo.vim.git
rfc2html = https://github.com/vim-scripts/rfc2html.git
mruex = https://github.com/vim-scripts/mruex.git
cmvc.vim = https://github.com/vim-scripts/cmvc.vim.git
nerd_tree-project = https://github.com/vim-scripts/NERD_tree-Project.git
mail_re.set = https://github.com/vim-scripts/Mail_Re.set.git
cscope-quickfix = https://github.com/vim-scripts/cscope-quickfix.git
yet-another-svn-script = https://github.com/vim-scripts/yet-another-svn-script.git
mark_tools = https://github.com/vim-scripts/mark_tools.git
eyapp = https://github.com/vim-scripts/eyapp.git
f6_comment = https://github.com/vim-scripts/F6_Comment.git
superior-haskell-interaction-mode-shim = https://github.com/vim-scripts/Superior-Haskell-Interaction-Mode-SHIM.git
colorful256.vim = https://github.com/vim-scripts/colorful256.vim.git
nvi.vim = https://github.com/vim-scripts/nvi.vim.git
remove-trailing-spaces = https://github.com/vim-scripts/Remove-Trailing-Spaces.git
vpars = https://github.com/vim-scripts/VPars.git
multipleranges.vim = https://github.com/vim-scripts/multipleRanges.vim.git
rcs.vim = https://github.com/vim-scripts/rcs.vim.git
guicolorscheme.vim = https://github.com/vim-scripts/guicolorscheme.vim.git
xchat-log-syntax = https://github.com/vim-scripts/xchat-log-syntax.git
comment-squawk = https://github.com/vim-scripts/Comment-Squawk.git
javap.vim = https://github.com/vim-scripts/javap.vim.git
fortune.vim = https://github.com/vim-scripts/fortune.vim.git
narrow_region = https://github.com/vim-scripts/narrow_region.git
motpat.vim = https://github.com/vim-scripts/motpat.vim.git
chocolate.vim = https://github.com/vim-scripts/chocolate.vim.git
werks.vim = https://github.com/vim-scripts/werks.vim.git
typofree.vim = https://github.com/vim-scripts/typofree.vim.git
lua.vim = https://github.com/vim-scripts/lua.vim.git
fontzoom.vim = https://github.com/vim-scripts/fontzoom.vim.git
seetab = https://github.com/vim-scripts/SeeTab.git
dante.vim = https://github.com/vim-scripts/dante.vim.git
flog = https://github.com/vim-scripts/Flog.git
destructive-paste = https://github.com/vim-scripts/Destructive-Paste.git
cleanphp = https://github.com/vim-scripts/cleanphp.git
vim-syntax-file-for-google-code-wiki = https://github.com/vim-scripts/Vim-Syntax-File-for-Google-Code-Wiki.git
lyrics = https://github.com/vim-scripts/Lyrics.git
syntaxgemfile.vim = https://github.com/vim-scripts/syntaxGemfile.vim.git
quotes--dimitrov = https://github.com/vim-scripts/Quotes--Dimitrov.git
fontsize.vim = https://github.com/vim-scripts/fontsize.vim.git
softbluev2 = https://github.com/vim-scripts/softbluev2.git
syntax-for-xul = https://github.com/vim-scripts/Syntax-for-XUL.git
colors = https://github.com/vim-scripts/colors.git
perldoc2 = https://github.com/vim-scripts/PERLDOC2.git
fasm.vim = https://github.com/vim-scripts/fasm.vim.git
highlight-unmatched-brackets = https://github.com/vim-scripts/Highlight-UnMatched-Brackets.git
colorv = https://github.com/vim-scripts/ColorV.git
colorx = https://github.com/vim-scripts/ColorX.git
colorer-color-scheme = https://github.com/vim-scripts/colorer-color-scheme.git
projecttag = https://github.com/vim-scripts/ProjectTag.git
tassert = https://github.com/vim-scripts/tAssert.git
gitignore = https://github.com/vim-scripts/gitignore.git
octave.vim = https://github.com/vim-scripts/octave.vim.git
pyljpost.vim = https://github.com/vim-scripts/pyljpost.vim.git
vexorian-color-scheme = https://github.com/vim-scripts/Vexorian-color-scheme.git
syntaxcomplete = https://github.com/vim-scripts/SyntaxComplete.git
xmlwf.vim = https://github.com/vim-scripts/xmlwf.vim.git
xhtml.vim = https://github.com/vim-scripts/xhtml.vim.git
transmit-ftp = https://github.com/vim-scripts/Transmit-FTP.git
cheat.vim = https://github.com/vim-scripts/cheat.vim.git
netrw.vim--hwang = https://github.com/vim-scripts/netrw.vim--Hwang.git
cmdalias.vim = https://github.com/vim-scripts/cmdalias.vim.git
orangeocean256 = https://github.com/vim-scripts/orangeocean256.git
omnicppcomplete = https://github.com/vim-scripts/OmniCppComplete.git
djgpp.vim = https://github.com/vim-scripts/djgpp.vim.git
iptables = https://github.com/vim-scripts/iptables.git
rpl = https://github.com/vim-scripts/rpl.git
m2sh.vim = https://github.com/vim-scripts/m2sh.vim.git
colorful = https://github.com/vim-scripts/colorful.git
tf2.vim = https://github.com/vim-scripts/tf2.vim.git
vimblr = https://github.com/vim-scripts/Vimblr.git
vimregex.vim = https://github.com/vim-scripts/VimRegEx.vim.git
self.vim = https://github.com/vim-scripts/self.vim.git
unicycle = https://github.com/vim-scripts/UniCycle.git
plsql.vim-syntax = https://github.com/vim-scripts/plsql.vim-syntax.git
cool-colors = https://github.com/vim-scripts/Cool-colors.git
tag_in_new_tab = https://github.com/vim-scripts/tag_in_new_tab.git
trogdor = https://github.com/vim-scripts/trogdor.git
isi2bib = https://github.com/vim-scripts/isi2bib.git
tkl.vim = https://github.com/vim-scripts/tkl.vim.git
janitor.vim = https://github.com/vim-scripts/janitor.vim.git
fruity.vim = https://github.com/vim-scripts/fruity.vim.git
snippet.vim = https://github.com/vim-scripts/snippet.vim.git
greens = https://github.com/vim-scripts/greens.git
quotes = https://github.com/vim-scripts/Quotes.git
filesearch = https://github.com/vim-scripts/Filesearch.git
popupbuffer.vim = https://github.com/vim-scripts/PopupBuffer.vim.git
vim-orgmode = https://github.com/vim-scripts/vim-orgmode.git
easypeasy = https://github.com/vim-scripts/EasyPeasy.git
relaxed-green = https://github.com/vim-scripts/Relaxed-Green.git
pagemaker6 = https://github.com/vim-scripts/pagemaker6.git
multi.vim = https://github.com/vim-scripts/multi.vim.git
vimtabs.vim = https://github.com/vim-scripts/vimtabs.vim.git
php.vim--garvin = https://github.com/vim-scripts/php.vim--Garvin.git
emv = https://github.com/vim-scripts/emv.git
mxl.vim = https://github.com/vim-scripts/mxl.vim.git
fokus = https://github.com/vim-scripts/fokus.git
bufexplorer.zip = https://github.com/vim-scripts/bufexplorer.zip.git
unite-yarm = https://github.com/vim-scripts/unite-yarm.git
reformat.vim = https://github.com/vim-scripts/reformat.vim.git
dos-commands = https://github.com/vim-scripts/DOS-Commands.git
lcscheck.vim = https://github.com/vim-scripts/lcscheck.vim.git
rcsvers.vim = https://github.com/vim-scripts/rcsvers.vim.git
lispcomplete.vim = https://github.com/vim-scripts/lispcomplete.vim.git
dosbatch-indent = https://github.com/vim-scripts/dosbatch-indent.git
fswitch = https://github.com/vim-scripts/FSwitch.git
parameter-text-objects = https://github.com/vim-scripts/Parameter-Text-Objects.git
help.vim = https://github.com/vim-scripts/help.vim.git
fine_blue.vim = https://github.com/vim-scripts/fine_blue.vim.git
colorsupport.vim = https://github.com/vim-scripts/colorsupport.vim.git
echofunc.vim = https://github.com/vim-scripts/echofunc.vim.git
set_utf8.vim = https://github.com/vim-scripts/set_utf8.vim.git
a-hrefhttp-allthingsb2b.typepad.com = https://github.com/vim-scripts/a-hrefhttp-allthingsb2b.typepad.com.git
ttagecho = https://github.com/vim-scripts/ttagecho.git
aftersyntax.vim = https://github.com/vim-scripts/aftersyntax.vim.git
vim-addon-sql = https://github.com/vim-scripts/vim-addon-sql.git
projectctags = https://github.com/vim-scripts/ProjectCTags.git
mophiasmoke = https://github.com/vim-scripts/mophiaSmoke.git
crazy-home-key = https://github.com/vim-scripts/Crazy-Home-Key.git
statline = https://github.com/vim-scripts/statline.git
delphi = https://github.com/vim-scripts/delphi.git
mrpink = https://github.com/vim-scripts/mrpink.git
scrnpipe.vim = https://github.com/vim-scripts/scrnpipe.vim.git
mud = https://github.com/vim-scripts/Mud.git
bookmarking = https://github.com/vim-scripts/Bookmarking.git
bk-menu.vim = https://github.com/vim-scripts/bk-menu.vim.git
pygdb = https://github.com/vim-scripts/pygdb.git
xgen.vim = https://github.com/vim-scripts/xgen.vim.git
pyrepl.vim = https://github.com/vim-scripts/PyREPL.vim.git
getafe = https://github.com/vim-scripts/Getafe.git
removefile.vim = https://github.com/vim-scripts/RemoveFile.vim.git
vgrep = https://github.com/vim-scripts/vgrep.git
jumpincode = https://github.com/vim-scripts/JumpInCode.git
recover.vim = https://github.com/vim-scripts/recover.vim.git
clang-complete = https://github.com/vim-scripts/clang-complete.git
findmate = https://github.com/vim-scripts/FindMate.git
allbufferstoonewindow.vim = https://github.com/vim-scripts/AllBuffersToOneWindow.vim.git
emacsmodeline.vim = https://github.com/vim-scripts/emacsmodeline.vim.git
togglecomment = https://github.com/vim-scripts/ToggleComment.git
ikiwiki-syntax = https://github.com/vim-scripts/ikiwiki-syntax.git
dtd2vim = https://github.com/vim-scripts/dtd2vim.git
operator-html-escape = https://github.com/vim-scripts/operator-html-escape.git
calibre.vim = https://github.com/vim-scripts/calibre.vim.git
yasnippets = https://github.com/vim-scripts/yasnippets.git
simpleandfriendly.vim = https://github.com/vim-scripts/simpleandfriendly.vim.git
asciidoc.vim = https://github.com/vim-scripts/asciidoc.vim.git
greputils = https://github.com/vim-scripts/greputils.git
tvo--the-vim-outliner = https://github.com/vim-scripts/TVO--The-Vim-Outliner.git
xml-completion = https://github.com/vim-scripts/XML-Completion.git
gtk-vim-syntax = https://github.com/vim-scripts/gtk-vim-syntax.git
strange = https://github.com/vim-scripts/strange.git
all-colors-pack = https://github.com/vim-scripts/all-colors-pack.git
sha1.vim = https://github.com/vim-scripts/sha1.vim.git
xul.vim--peyronel = https://github.com/vim-scripts/xul.vim--peyronel.git
nautilus-py-vim = https://github.com/vim-scripts/nautilus-py-vim.git
whatdomain.vim = https://github.com/vim-scripts/whatdomain.vim.git
spiderhawk = https://github.com/vim-scripts/Spiderhawk.git
hicurline = https://github.com/vim-scripts/HiCurLine.git
enter-indent = https://github.com/vim-scripts/Enter-Indent.git
tortoisetyping = https://github.com/vim-scripts/TortoiseTyping.git
st.vim = https://github.com/vim-scripts/st.vim.git
selectbuf = https://github.com/vim-scripts/SelectBuf.git
css-one-line--multi-line-folding = https://github.com/vim-scripts/CSS-one-line--multi-line-folding.git
gmsh.vim = https://github.com/vim-scripts/gmsh.vim.git
ccase.vim = https://github.com/vim-scripts/ccase.vim.git
bayqua = https://github.com/vim-scripts/bayQua.git
xian.vim = https://github.com/vim-scripts/xian.vim.git
tcsoft.vim = https://github.com/vim-scripts/tcsoft.vim.git
vim-haxe = https://github.com/vim-scripts/vim-haxe.git
vim-addon-manager = https://github.com/vim-scripts/vim-addon-manager.git
headlights = https://github.com/vim-scripts/Headlights.git
cd.vim = https://github.com/vim-scripts/CD.vim.git
ekvoli = https://github.com/vim-scripts/ekvoli.git
ref.vim = https://github.com/vim-scripts/ref.vim.git
netrw.vim = https://github.com/vim-scripts/netrw.vim.git
mdl.vim = https://github.com/vim-scripts/mdl.vim.git
seashell = https://github.com/vim-scripts/seashell.git
python-tag-import = https://github.com/vim-scripts/python-tag-import.git
sorceror = https://github.com/vim-scripts/Sorceror.git
openscad.vim = https://github.com/vim-scripts/openscad.vim.git
mail_movement = https://github.com/vim-scripts/mail_movement.git
avr.vim = https://github.com/vim-scripts/avr.vim.git
free4all = https://github.com/vim-scripts/free4all.git
tagscan = https://github.com/vim-scripts/tagscan.git
datascript.vim = https://github.com/vim-scripts/datascript.vim.git
cern_root.vim = https://github.com/vim-scripts/cern_root.vim.git
globalreplace.vim = https://github.com/vim-scripts/globalreplace.vim.git
savemap.vim = https://github.com/vim-scripts/savemap.vim.git
earth.vim = https://github.com/vim-scripts/earth.vim.git
logcat-syntax-highlighter = https://github.com/vim-scripts/Logcat-syntax-highlighter.git
omnetpp-ned-syntax-file = https://github.com/vim-scripts/OMNeTpp-NED-syntax-file.git
pyte = https://github.com/vim-scripts/pyte.git
fog-colorscheme = https://github.com/vim-scripts/fog-colorscheme.git
vividchalk.vim = https://github.com/vim-scripts/vividchalk.vim.git
tavi.vim = https://github.com/vim-scripts/tavi.vim.git
zshr.vim = https://github.com/vim-scripts/zshr.vim.git
tumblr.vim = https://github.com/vim-scripts/tumblr.vim.git
mheg = https://github.com/vim-scripts/mheg.git
shapley-values = https://github.com/vim-scripts/Shapley-Values.git
mail_indenter = https://github.com/vim-scripts/mail_indenter.git
smartchr = https://github.com/vim-scripts/smartchr.git
hmac.vim = https://github.com/vim-scripts/hmac.vim.git
matchit.zip = https://github.com/vim-scripts/matchit.zip.git
runscript.vim = https://github.com/vim-scripts/runscript.vim.git
colorselector = https://github.com/vim-scripts/colorselector.git
trivial256 = https://github.com/vim-scripts/trivial256.git
svn.vim = https://github.com/vim-scripts/svn.vim.git
railscasts = https://github.com/vim-scripts/railscasts.git
oop-javascript-indentation = https://github.com/vim-scripts/OOP-javascript-indentation.git
css_color.vim = https://github.com/vim-scripts/css_color.vim.git
php-dictionary = https://github.com/vim-scripts/PHP-dictionary.git
better-javascript-indentation = https://github.com/vim-scripts/Better-Javascript-Indentation.git
screen-vim---gnu-screentmux = https://github.com/vim-scripts/Screen-vim---gnu-screentmux.git
my-_vimrc-for-windows-2000xp-users = https://github.com/vim-scripts/my-_vimrc-for-Windows-2000XP-users.git
muttaliasescomplete.vim = https://github.com/vim-scripts/muttaliasescomplete.vim.git
showpairs = https://github.com/vim-scripts/ShowPairs.git
numbered.vim = https://github.com/vim-scripts/numbered.vim.git
w3cvalidator = https://github.com/vim-scripts/w3cvalidator.git
bcbuf.vim = https://github.com/vim-scripts/bcbuf.vim.git
nosql.vim = https://github.com/vim-scripts/nosql.vim.git
shebang = https://github.com/vim-scripts/Shebang.git
md5.vim = https://github.com/vim-scripts/md5.vim.git
figlet.vim = https://github.com/vim-scripts/Figlet.vim.git
speedware = https://github.com/vim-scripts/Speedware.git
autofold.vim = https://github.com/vim-scripts/AutoFold.vim.git
twitter--jeffery = https://github.com/vim-scripts/Twitter--Jeffery.git
multi-replace = https://github.com/vim-scripts/Multi-Replace.git
visualstar.vim = https://github.com/vim-scripts/visualstar.vim.git
altera.vim = https://github.com/vim-scripts/altera.vim.git
grsecurity = https://github.com/vim-scripts/grsecurity.git
cleanswap = https://github.com/vim-scripts/cleanswap.git
gams = https://github.com/vim-scripts/gams.git
quicktemplate = https://github.com/vim-scripts/QuickTemplate.git
dotoutlinetree = https://github.com/vim-scripts/DotOutlineTree.git
vdb-duplicated = https://github.com/vim-scripts/vdb-duplicated.git
updatednsserial = https://github.com/vim-scripts/UpdateDNSSerial.git
dagon = https://github.com/vim-scripts/Dagon.git
uc.vim = https://github.com/vim-scripts/uc.vim.git
vim-symbols-strings = https://github.com/vim-scripts/vim-symbols-strings.git
buftabs = https://github.com/vim-scripts/buftabs.git
expander.vim = https://github.com/vim-scripts/expander.vim.git
nuweb.vim = https://github.com/vim-scripts/nuweb.vim.git
sonictemplate.vim = https://github.com/vim-scripts/SonicTemplate.vim.git
checklist.vim = https://github.com/vim-scripts/checklist.vim.git
vimchant = https://github.com/vim-scripts/Vimchant.git
abolish.vim = https://github.com/vim-scripts/abolish.vim.git
motion.vim = https://github.com/vim-scripts/motion.vim.git
uniface.vim = https://github.com/vim-scripts/uniface.vim.git
movewin.vim = https://github.com/vim-scripts/movewin.vim.git
bw.vim = https://github.com/vim-scripts/bw.vim.git
ruby_imaps = https://github.com/vim-scripts/ruby_imaps.git
buffers_search_and_replace = https://github.com/vim-scripts/buffers_search_and_replace.git
indenthl--summers = https://github.com/vim-scripts/IndentHL--Summers.git
calm-breeze = https://github.com/vim-scripts/Calm-Breeze.git
ku-metarw = https://github.com/vim-scripts/ku-metarw.git
sccs-menu.vim = https://github.com/vim-scripts/sccs-menu.vim.git
indenthtml.vim = https://github.com/vim-scripts/indenthtml.vim.git
hexman.vim = https://github.com/vim-scripts/hexman.vim.git
vimgrepbuffer = https://github.com/vim-scripts/VimgrepBuffer.git
guardian = https://github.com/vim-scripts/Guardian.git
sourcesafe.zip = https://github.com/vim-scripts/sourceSafe.zip.git
vimplate-b = https://github.com/vim-scripts/vimplate-B.git
noweb = https://github.com/vim-scripts/Noweb.git
mahewincs = https://github.com/vim-scripts/Mahewincs.git
narrow = https://github.com/vim-scripts/narrow.git
charon = https://github.com/vim-scripts/charon.git
gmt.vim = https://github.com/vim-scripts/gmt.vim.git
snipmate = https://github.com/vim-scripts/snipMate.git
xmms.vim = https://github.com/vim-scripts/xmms.vim.git
tocterm = https://github.com/vim-scripts/tocterm.git
pythoncomplete = https://github.com/vim-scripts/pythoncomplete.git
wcd.vim = https://github.com/vim-scripts/wcd.vim.git
localrc.vim = https://github.com/vim-scripts/localrc.vim.git
triggers.vim = https://github.com/vim-scripts/Triggers.vim.git
blockle.vim = https://github.com/vim-scripts/blockle.vim.git
unite-colorscheme = https://github.com/vim-scripts/unite-colorscheme.git
renumber.vim = https://github.com/vim-scripts/renumber.vim.git
tagsbase.zip = https://github.com/vim-scripts/TagsBase.zip.git
irssilog.vim = https://github.com/vim-scripts/irssilog.vim.git
ocaml-instructions-signature---parser = https://github.com/vim-scripts/OCaml-instructions-signature---parser.git
svn-diff.vim = https://github.com/vim-scripts/svn-diff.vim.git
showhide.vim = https://github.com/vim-scripts/showhide.vim.git
vissum.vim = https://github.com/vim-scripts/visSum.vim.git
cream-vimabbrev = https://github.com/vim-scripts/cream-vimabbrev.git
borland.vim = https://github.com/vim-scripts/borland.vim.git
replacefile = https://github.com/vim-scripts/ReplaceFile.git
bufmenutoo = https://github.com/vim-scripts/bufMenuToo.git
bccalc.vim = https://github.com/vim-scripts/bccalc.vim.git
lustre = https://github.com/vim-scripts/lustre.git
get-win32-short-name = https://github.com/vim-scripts/Get-Win32-Short-Name.git
sessmgr = https://github.com/vim-scripts/sessmgr.git
rotate.vim = https://github.com/vim-scripts/rotate.vim.git
robokai = https://github.com/vim-scripts/robokai.git
atomcoder-vim = https://github.com/vim-scripts/atomcoder-vim.git
explorer-reader.vim = https://github.com/vim-scripts/explorer-reader.vim.git
co.vim = https://github.com/vim-scripts/co.vim.git
rename2 = https://github.com/vim-scripts/Rename2.git
_vim_wok_visualcpp01.zip = https://github.com/vim-scripts/_vim_wok_visualcpp01.zip.git
vundle = https://github.com/vim-scripts/vundle.git
blockwork = https://github.com/vim-scripts/BlockWork.git
vimplate-enhanced = https://github.com/vim-scripts/Vimplate-Enhanced.git
vimacs = https://github.com/vim-scripts/Vimacs.git
winmanager--fox = https://github.com/vim-scripts/winmanager--Fox.git
rcg_term = https://github.com/vim-scripts/rcg_term.git
nant-compiler-script = https://github.com/vim-scripts/nant-compiler-script.git
the-nerd-commenter = https://github.com/vim-scripts/The-NERD-Commenter.git
quickfonts.vim = https://github.com/vim-scripts/quickfonts.vim.git
svncommand.vim = https://github.com/vim-scripts/svncommand.vim.git
fly-between-projects = https://github.com/vim-scripts/Fly-Between-Projects.git
printwithlnum = https://github.com/vim-scripts/PrintWithLNum.git
number-marks = https://github.com/vim-scripts/number-marks.git
hlasm.vim = https://github.com/vim-scripts/hlasm.vim.git
plist.vim = https://github.com/vim-scripts/plist.vim.git
grey2 = https://github.com/vim-scripts/grey2.git
opencl.vim = https://github.com/vim-scripts/opencl.vim.git
truegrid.vim = https://github.com/vim-scripts/truegrid.vim.git
vimrc_nopik = https://github.com/vim-scripts/vimrc_nopik.git
russian-phonetic_utf-8.vim = https://github.com/vim-scripts/russian-phonetic_utf-8.vim.git
tmru = https://github.com/vim-scripts/tmru.git
lighttpd-syntax = https://github.com/vim-scripts/lighttpd-syntax.git
rangemacro = https://github.com/vim-scripts/RangeMacro.git
decho = https://github.com/vim-scripts/Decho.git
showmultibase = https://github.com/vim-scripts/ShowMultiBase.git
remind = https://github.com/vim-scripts/remind.git
multiselect = https://github.com/vim-scripts/multiselect.git
align.vim = https://github.com/vim-scripts/Align.vim.git
ps2vsm = https://github.com/vim-scripts/ps2vsm.git
vimfortune = https://github.com/vim-scripts/vimfortune.git
csapprox = https://github.com/vim-scripts/CSApprox.git
jovial.vim = https://github.com/vim-scripts/jovial.vim.git
beanshell.vim = https://github.com/vim-scripts/beanshell.vim.git
python_calltips = https://github.com/vim-scripts/python_calltips.git
recent.vim = https://github.com/vim-scripts/recent.vim.git
textobj-fold = https://github.com/vim-scripts/textobj-fold.git
oberon2 = https://github.com/vim-scripts/oberon2.git
autodate.vim = https://github.com/vim-scripts/autodate.vim.git
bwutility.vim = https://github.com/vim-scripts/bwUtility.vim.git
progressbar-widget = https://github.com/vim-scripts/progressbar-widget.git
templates.vim = https://github.com/vim-scripts/templates.vim.git
rack.builder-syntax = https://github.com/vim-scripts/Rack.Builder-syntax.git
smarty.vim = https://github.com/vim-scripts/smarty.vim.git
gen_vimoptrc.vim = https://github.com/vim-scripts/gen_vimoptrc.vim.git
twilight-for-python = https://github.com/vim-scripts/Twilight-for-python.git
parameter-helpers = https://github.com/vim-scripts/Parameter-Helpers.git
smarty-syntax = https://github.com/vim-scripts/smarty-syntax.git
sr.vim = https://github.com/vim-scripts/sr.vim.git
vimpager = https://github.com/vim-scripts/vimpager.git
mis.vim = https://github.com/vim-scripts/mis.vim.git
tohtml_wincp = https://github.com/vim-scripts/tohtml_wincp.git
ruby-macros.vim = https://github.com/vim-scripts/ruby-macros.vim.git
dokuvimki = https://github.com/vim-scripts/DokuVimKi.git
stingray = https://github.com/vim-scripts/stingray.git
jvim = https://github.com/vim-scripts/jVim.git
runtests.vim = https://github.com/vim-scripts/runtests.vim.git
pic18fxxx = https://github.com/vim-scripts/pic18fxxx.git
templeet = https://github.com/vim-scripts/Templeet.git
autohi = https://github.com/vim-scripts/autohi.git
getvar.vim = https://github.com/vim-scripts/getVar.vim.git
revolutions.vim = https://github.com/vim-scripts/revolutions.vim.git
dbgp-remote-debugger-interface = https://github.com/vim-scripts/DBGp-Remote-Debugger-Interface.git
cream-iso639.vim = https://github.com/vim-scripts/cream-iso639.vim.git
brief2 = https://github.com/vim-scripts/brief2.git
corn = https://github.com/vim-scripts/corn.git
darkerdesert = https://github.com/vim-scripts/darkerdesert.git
colour_flip.pl = https://github.com/vim-scripts/colour_flip.pl.git
manuscript.vim = https://github.com/vim-scripts/manuscript.vim.git
sift = https://github.com/vim-scripts/Sift.git
send.vim = https://github.com/vim-scripts/send.vim.git
synic.vim = https://github.com/vim-scripts/synic.vim.git
hp-41-file-type-plugin = https://github.com/vim-scripts/HP-41-file-type-plugin.git
ethna-switch = https://github.com/vim-scripts/ethna-switch.git
tesla = https://github.com/vim-scripts/tesla.git
cvsps-syntax = https://github.com/vim-scripts/cvsps-syntax.git
reorder-columns = https://github.com/vim-scripts/reorder-columns.git
markjump.vim = https://github.com/vim-scripts/markjump.vim.git
ck.vim = https://github.com/vim-scripts/ck.vim.git
desertedocean.vim = https://github.com/vim-scripts/desertedocean.vim.git
lite-tab-page = https://github.com/vim-scripts/Lite-Tab-Page.git
otherfile.vim-b = https://github.com/vim-scripts/otherfile.vim-B.git
genshi.vim--wei = https://github.com/vim-scripts/genshi.vim--Wei.git
exutility = https://github.com/vim-scripts/exUtility.git
teol.vim = https://github.com/vim-scripts/teol.vim.git
python_encoding.vim = https://github.com/vim-scripts/python_encoding.vim.git
opencl-c-syntax-highlighting = https://github.com/vim-scripts/OpenCL-C-syntax-highlighting.git
asmm6502.vim = https://github.com/vim-scripts/asmM6502.vim.git
local_vimrc.vim = https://github.com/vim-scripts/local_vimrc.vim.git
pyflakes.vim = https://github.com/vim-scripts/pyflakes.vim.git
setsyntax = https://github.com/vim-scripts/setsyntax.git
javascript-syntax-with-ajax-support = https://github.com/vim-scripts/Javascript-syntax-with-Ajax-Support.git
django-template-textobjects = https://github.com/vim-scripts/django-template-textobjects.git
googlereader.vim = https://github.com/vim-scripts/GoogleReader.vim.git
datastage-universe-basic = https://github.com/vim-scripts/DataStage-Universe-Basic.git
chimp = https://github.com/vim-scripts/Chimp.git
bufkill.vim = https://github.com/vim-scripts/bufkill.vim.git
paintbox = https://github.com/vim-scripts/paintbox.git
rexplorer = https://github.com/vim-scripts/RExplorer.git
ywchaos = https://github.com/vim-scripts/ywchaos.git
glsl.vim = https://github.com/vim-scripts/glsl.vim.git
syntastic = https://github.com/vim-scripts/Syntastic.git
indent-highlight = https://github.com/vim-scripts/Indent-Highlight.git
javaimp.vim = https://github.com/vim-scripts/javaimp.vim.git
xml2latex = https://github.com/vim-scripts/xml2latex.git
dev-cpp-scheme = https://github.com/vim-scripts/Dev-Cpp-Scheme.git
tagmaster = https://github.com/vim-scripts/tagmaster.git
csc.snippets = https://github.com/vim-scripts/csc.snippets.git
tpp.vim = https://github.com/vim-scripts/tpp.vim.git
gvimfullscreen_win32 = https://github.com/vim-scripts/gvimfullscreen_win32.git
tex.vim--tanzler = https://github.com/vim-scripts/tex.vim--Tanzler.git
fortran_codecomplete.vim = https://github.com/vim-scripts/fortran_codecomplete.vim.git
pep8--driessen = https://github.com/vim-scripts/pep8--Driessen.git
calm = https://github.com/vim-scripts/calm.git
slide-show = https://github.com/vim-scripts/slide-show.git
setget = https://github.com/vim-scripts/setget.git
hdl_plugin = https://github.com/vim-scripts/hdl_plugin.git
wood.vim = https://github.com/vim-scripts/wood.vim.git
comment.vim--joshi = https://github.com/vim-scripts/comment.vim--Joshi.git
todo.vim = https://github.com/vim-scripts/todo.vim.git
editsrec = https://github.com/vim-scripts/editsrec.git
tlib = https://github.com/vim-scripts/tlib.git
httpclog = https://github.com/vim-scripts/httpclog.git
pleasant-colorscheme = https://github.com/vim-scripts/Pleasant-colorscheme.git
oo-code-completion = https://github.com/vim-scripts/OO-code-completion.git
vim-indent-object = https://github.com/vim-scripts/vim-indent-object.git
4nt-bundle = https://github.com/vim-scripts/4NT-Bundle.git
multiapisyntax = https://github.com/vim-scripts/multiAPIsyntax.git
edifact.vim = https://github.com/vim-scripts/edifact.vim.git
cscomment.vim = https://github.com/vim-scripts/cscomment.vim.git
capslock.vim = https://github.com/vim-scripts/capslock.vim.git
minibufexpl.vim = https://github.com/vim-scripts/minibufexpl.vim.git
ipc-syntax-highlight = https://github.com/vim-scripts/IPC-syntax-highlight.git
test.vim = https://github.com/vim-scripts/test.vim.git
fstab-syntax = https://github.com/vim-scripts/fstab-syntax.git
risto-color-scheme = https://github.com/vim-scripts/Risto-Color-Scheme.git
iniparser = https://github.com/vim-scripts/IniParser.git
w3af-script-syntax-file = https://github.com/vim-scripts/W3AF-script-syntax-file.git
php_getset.vim = https://github.com/vim-scripts/php_getset.vim.git
writebackupversioncontrol = https://github.com/vim-scripts/writebackupVersionControl.git
textobj-datetime = https://github.com/vim-scripts/textobj-datetime.git
php.vim--hodge = https://github.com/vim-scripts/php.vim--Hodge.git
cascading.vim = https://github.com/vim-scripts/cascading.vim.git
vim-stylus = https://github.com/vim-scripts/vim-stylus.git
pf.vim = https://github.com/vim-scripts/pf.vim.git
mru = https://github.com/vim-scripts/MRU.git
vimpy = https://github.com/vim-scripts/Vimpy.git
view_diff = https://github.com/vim-scripts/view_diff.git
darkz = https://github.com/vim-scripts/darkZ.git
captureclipboard = https://github.com/vim-scripts/CaptureClipboard.git
tabbar = https://github.com/vim-scripts/TabBar.git
tcl_togl.vim = https://github.com/vim-scripts/tcl_togl.vim.git
vimpp = https://github.com/vim-scripts/vimpp.git
hgrev = https://github.com/vim-scripts/hgrev.git
findfuncname.vim = https://github.com/vim-scripts/findfuncname.vim.git
kent-vim-extensions = https://github.com/vim-scripts/Kent-Vim-Extensions.git
loremipsum = https://github.com/vim-scripts/loremipsum.git
gdbvim = https://github.com/vim-scripts/gdbvim.git
translateentocn = https://github.com/vim-scripts/TranslateEnToCn.git
haml = https://github.com/vim-scripts/Haml.git
autoit.vim--breland = https://github.com/vim-scripts/autoit.vim--Breland.git
tagmenu.vim = https://github.com/vim-scripts/tagmenu.vim.git
archive = https://github.com/vim-scripts/Archive.git
posting = https://github.com/vim-scripts/Posting.git
ironman.vim = https://github.com/vim-scripts/ironman.vim.git
pastie.vim = https://github.com/vim-scripts/pastie.vim.git
po.vim = https://github.com/vim-scripts/po.vim.git
quancept.vim = https://github.com/vim-scripts/quancept.vim.git
form.vim = https://github.com/vim-scripts/form.vim.git
refactor = https://github.com/vim-scripts/refactor.git
lilydjwg_dark = https://github.com/vim-scripts/lilydjwg_dark.git
clips.vim = https://github.com/vim-scripts/clips.vim.git
carvedwoodcool = https://github.com/vim-scripts/CarvedWoodCool.git
oberon.vim = https://github.com/vim-scripts/oberon.vim.git
ldif.vim = https://github.com/vim-scripts/ldif.vim.git
session.vim--odding = https://github.com/vim-scripts/session.vim--Odding.git
papayawhip = https://github.com/vim-scripts/PapayaWhip.git
busierbee = https://github.com/vim-scripts/BusierBee.git
jlj.vim = https://github.com/vim-scripts/jlj.vim.git
qtmplsel.vim = https://github.com/vim-scripts/qtmplsel.vim.git
freefem.vim = https://github.com/vim-scripts/freefem.vim.git
auto-debug-your-vim = https://github.com/vim-scripts/Auto-debug-your-vim.git
xslhelper.vim = https://github.com/vim-scripts/xslhelper.vim.git
scite-colors = https://github.com/vim-scripts/scite-colors.git
idf.vim = https://github.com/vim-scripts/idf.vim.git
record-repeat.vim = https://github.com/vim-scripts/record-repeat.vim.git
cfwheels-dictionary = https://github.com/vim-scripts/CFWheels-Dictionary.git
svg.vim = https://github.com/vim-scripts/svg.vim.git
tbibtools = https://github.com/vim-scripts/tbibtools.git
python_fold = https://github.com/vim-scripts/python_fold.git
autocomp.vim = https://github.com/vim-scripts/autocomp.vim.git
ashen.vim = https://github.com/vim-scripts/ashen.vim.git
rfc-syntax = https://github.com/vim-scripts/rfc-syntax.git
verilog-constructs-plugin = https://github.com/vim-scripts/Verilog-constructs-plugin.git
nevfn = https://github.com/vim-scripts/nevfn.git
fso = https://github.com/vim-scripts/fso.git
efficient-python-folding = https://github.com/vim-scripts/Efficient-python-folding.git
gorilla = https://github.com/vim-scripts/Gorilla.git
neverness-colour-scheme = https://github.com/vim-scripts/Neverness-colour-scheme.git
lustre-syntax = https://github.com/vim-scripts/lustre-syntax.git
rhythmbox-control-plugin = https://github.com/vim-scripts/Rhythmbox-Control-Plugin.git
embedded-vim-preprocessor = https://github.com/vim-scripts/Embedded-Vim-Preprocessor.git
xml_taginsert = https://github.com/vim-scripts/xml_taginsert.git
vtreeexplorer = https://github.com/vim-scripts/vtreeexplorer.git
replay.vim = https://github.com/vim-scripts/Replay.vim.git
javascript.vim--welshare = https://github.com/vim-scripts/javascript.vim--welshare.git
fx-hlsl = https://github.com/vim-scripts/FX-HLSL.git
keepcase.vim = https://github.com/vim-scripts/keepcase.vim.git
smart_cr = https://github.com/vim-scripts/smart_cr.git
tetragrammaton = https://github.com/vim-scripts/tetragrammaton.git
xmms2ctrl = https://github.com/vim-scripts/xmms2ctrl.git
crestore.vim = https://github.com/vim-scripts/crestore.vim.git
showmarks7 = https://github.com/vim-scripts/ShowMarks7.git
javabrowser = https://github.com/vim-scripts/JavaBrowser.git
cecutil = https://github.com/vim-scripts/cecutil.git
wmgraphviz = https://github.com/vim-scripts/wmgraphviz.git
softtabstops = https://github.com/vim-scripts/SoftTabStops.git
sudo.vim = https://github.com/vim-scripts/sudo.vim.git
autoloadadacomplete.vim = https://github.com/vim-scripts/autoloadadacomplete.vim.git
ciscoacl.vim = https://github.com/vim-scripts/ciscoacl.vim.git
ri-browser = https://github.com/vim-scripts/ri-browser.git
buffer-perlpython.pl = https://github.com/vim-scripts/buffer-perlpython.pl.git
accentuate.vim = https://github.com/vim-scripts/accentuate.vim.git
hornet.vim = https://github.com/vim-scripts/hornet.vim.git
vimitunes.vim = https://github.com/vim-scripts/VimITunes.vim.git
rdark = https://github.com/vim-scripts/rdark.git
searchcompl.vim = https://github.com/vim-scripts/SearchCompl.vim.git
fish.vim = https://github.com/vim-scripts/fish.vim.git
r.vim = https://github.com/vim-scripts/R.vim.git
vec = https://github.com/vim-scripts/VEC.git
oil.vim = https://github.com/vim-scripts/OIL.vim.git
javascript-omnicompletion-with-yui-and-j = https://github.com/vim-scripts/Javascript-OmniCompletion-with-YUI-and-j.git
toc.vim = https://github.com/vim-scripts/toc.vim.git
googlesearchvim = https://github.com/vim-scripts/GoogleSearchVIM.git
advantage = https://github.com/vim-scripts/advantage.git
vim-templates = https://github.com/vim-scripts/vim-templates.git
surround.vim = https://github.com/vim-scripts/surround.vim.git
scilab.tar.gz = https://github.com/vim-scripts/scilab.tar.gz.git
wikidoc-syntax-highlighting = https://github.com/vim-scripts/Wikidoc-syntax-highlighting.git
g15vim = https://github.com/vim-scripts/g15vim.git
rubysinatra = https://github.com/vim-scripts/RubySinatra.git
vim-email-client = https://github.com/vim-scripts/VIM-Email-Client.git
autumn.vim = https://github.com/vim-scripts/autumn.vim.git
search-in-addressbook = https://github.com/vim-scripts/Search-in-Addressbook.git
ambient-color-scheme = https://github.com/vim-scripts/Ambient-Color-Scheme.git
cfengine.vim = https://github.com/vim-scripts/cfengine.vim.git
confirmquit.vim = https://github.com/vim-scripts/ConfirmQuit.vim.git