forked from robbenmu/dotvim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vundle.vim
executable file
·120 lines (94 loc) · 3.04 KB
/
vundle.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
" # NeoBundles Beginning #
NeoBundle 'L9'
" @ NeoBundle --- [ Style Custom ]
NeoBundle 'morhetz/gruvbox'
NeoBundle 'bling/vim-airline'
NeoBundle 'terryma/vim-smooth-scroll'
"NeoBundle 'Lokaltog/vim-powerline'
" @ NeoBundle --- [ Source Code Cheacker ]
"NeoBundle 'sjl/gundo.vim'
NeoBundle 'majutsushi/tagbar'
NeoBundle 'scrooloose/syntastic'
NeoBundle 'hushicai/fecs.vim.git'
" NERDTree NeoBundles Collections
NeoBundle 'scrooloose/nerdtree'
NeoBundle 'ryanoasis/vim-webdevicons'
NeoBundle 'Xuyuanp/nerdtree-git-plugin'
"NeoBundle 'jistr/vim-nerdtree-tabs'
NeoBundle 'scrooloose/nerdcommenter'
" @ NeoBundle --- [ |Google| Geeks NeoBundle ]
NeoBundle 'terryma/vim-multiple-cursors'
NeoBundle 'marijnh/tern_for_vim'
NeoBundle 'Valloric/ListToggle'
NeoBundle 'Valloric/YouCompleteMe'
"NeoBundle 'Shougo/neocomplcache.vim'
"NeoBundle 'fatih/vim-go'
" @ NeoBundle --- [ Auto Complete ]
NeoBundle 'Raimondi/delimitMate'
NeoBundle 'SirVer/ultisnips'
NeoBundle 'honza/vim-snippets'
NeoBundle 'mattn/emmet-vim'
NeoBundle 'c9s/perlomni.vim'
NeoBundle 'gcmt/wildfire.vim'
NeoBundle 'tpope/vim-abolish'
NeoBundle 'tpope/vim-surround'
" @ NeoBundle --- [ CWD File Buffer Manager ]
NeoBundle 'Shougo/neomru.vim'
NeoBundle 'Shougo/unite.vim'
NeoBundle 'Shougo/unite-outline'
NeoBundle 'Shougo/unite-session'
NeoBundle 'Shougo/vimfiler.vim'
NeoBundle 'tsukkee/unite-tag'
"NeoBundle 'thinca/vim-unite-history'
NeoBundle 'yegappan/mru'
" @ NeoBundle --- [ Git && Shell Tools ]
NeoBundle 'Shougo/vimproc.vim', {
\ 'build' : {
\ 'windows' : 'tools\\update-dll-mingw',
\ 'cygwin' : 'make -f make_cygwin.mak',
\ 'mac' : 'make -f make_mac.mak',
\ 'linux' : 'make',
\ 'unix' : 'gmake',
\ },
\ }
NeoBundle 'Shougo/vimshell.vim'
"NeoBundle 'tpope/vim-fugitive'
NeoBundle 'mattn/webapi-vim'
NeoBundle 'airblade/vim-gitgutter'
" @ NeoBundle --- [ Code BAT Sreach ]
NeoBundle 'rking/ag.vim'
NeoBundle 'thinca/vim-quickrun'
NeoBundle 'kien/ctrlp.vim'
"NeoBundle 'dyng/ctrlsf.vim'
"NeoBundle 'mklabs/grunt.vim'
" @ NeoBundle --- [ Web Development Tools ]
" NeoBundle 'pangloss/vim-javascript'
NeoBundle 'othree/yajs.vim'
NeoBundle 'othree/javascript-libraries-syntax.vim'
NeoBundle 'gorodinskiy/vim-coloresque'
NeoBundle 'hail2u/vim-css3-syntax'
NeoBundle 'othree/html5.vim'
NeoBundle 'othree/html5-syntax.vim'
NeoBundle 'groenewege/vim-less'
" NeoBundle 'digitaltoad/vim-jade'
NeoBundle 'kchmck/vim-coffee-script'
NeoBundle 'elzr/vim-json'
NeoBundle 'plasticboy/vim-markdown'
NeoBundle 'iakio/smarty3.vim'
NeoBundle 'matchit.zip'
NeoBundle 'maksimr/vim-jsbeautify'
NeoBundle 'millermedeiros/vim-esformatter'
NeoBundle 'einars/js-beautify'
NeoBundle 'heavenshell/vim-jsdoc'
" @ NeoBundle --- [ ADV Program Language ]
" NeoBundle 'octol/vim-cpp-enhanced-highlight'
" @ NeoBundle --- [ Code Format ]
NeoBundle 'godlygeek/tabular'
" @ NeoBundle --- [ File Motion ]
NeoBundle 'EasyMotion'
" Auto-Installation
if neobundle#exists_not_installed_bundles()
echomsg 'Automatically install the following bundles: ' .
\ string(neobundle#get_not_installed_bundle_names())
execute ':NeoBundleInstall'
endif