-
Notifications
You must be signed in to change notification settings - Fork 6
/
neobundles.vim
181 lines (162 loc) · 4.98 KB
/
neobundles.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
if has('vim_starting')
set nocompatible " Be iMproved
set runtimepath+=~/.vim/bundle/neobundle.vim/
endif
" call neobundle#rc(expand('~/.vim/bundle/'))
call neobundle#begin(expand('~/.vim/bundle/'))
" Let NeoBundle manage NeoBundle
NeoBundleFetch 'Shougo/neobundle.vim'
" Recommended to install
" After install, turn shell ~/.vim/bundle/vimproc, (n,g)make -f your_machines_makefile
NeoBundle 'Shougo/vimproc', {
\ 'build' : {
\ 'windows' : 'make -f make_mingw32.mak',
\ 'cygwin' : 'make -f make_cygwin.mak',
\ 'mac' : 'make -f make_mac.mak',
\ 'unix' : 'make -f make_unix.mak',
\ },
\ }
"--------------------------
" tpope plugins
"--------------------------
" disable pathogen, use vundle instead
"runtime bundle/pathogen/autoload/pathogen.vim
"call pathogen#infect()
"NeoBundle 'tpope/tpope/vim-pathogen'
NeoBundle 'tpope/vim-fugitive'
NeoBundle 'tpope/vim-surround'
NeoBundle 'tpope/vim-abolish'
NeoBundle 'tpope/vim-speeddating'
NeoBundle 'tpope/vim-repeat'
NeoBundle 'tpope/vim-unimpaired'
NeoBundle 'tpope/vim-rails'
NeoBundle 'tpope/vim-endwise'
NeoBundle 'tpope/vim-rbenv'
NeoBundle 'tpope/vim-rvm'
"--------------------------
" utility
"--------------------------
NeoBundle 'adelarsq/vim-matchit'
NeoBundle 'Raimondi/delimitMate'
NeoBundle 'greyblake/vim-preview'
NeoBundle 'vim-scripts/jsbeautify'
"NeoBundle 'vim-scripts/The-NERD-Commenter'
NeoBundle 'tomtom/tcomment_vim'
NeoBundle 'godlygeek/tabular'
NeoBundle 'nvie/vim-togglemouse'
" successor of zencoding
NeoBundle 'mattn/emmet-vim'
"NeoBundle 'rstacruz/sparkup', {'rtp': 'vim/'}
NeoBundle 'vim-scripts/loremipsum'
NeoBundle 'Lokaltog/vim-easymotion'
NeoBundle 'vim-ruby/vim-ruby'
" document viewer
NeoBundle 'lucapette/vim-ruby-doc'
"NeoBundle 'lucapette/vim-jquery-doc'
"NeoBundle 'rizzatti/dash.vim'
NeoBundle 'rhysd/devdocs.vim'
NeoBundle 'thoughtbot/vim-rspec'
"NeoBundle 'scrooloose/syntastic'
"NeoBundle 'wincent/Command-T'
NeoBundle 'sjl/gundo.vim'
NeoBundle 'slim-template/vim-slim'
NeoBundle 'vim-scripts/sudo.vim'
NeoBundle 'vim-scripts/BufOnly.vim'
" statusline
NeoBundle 'bling/vim-airline'
NeoBundle 'nathanaelkane/vim-indent-guides'
"NeoBundle 'airblade/vim-gitgutter'
" highlights trailing whitespace
NeoBundle 'bronson/vim-trailing-whitespace'
" Local rc
NeoBundle 'thinca/vim-localrc'
" i18n
NeoBundle 'stefanoverna/vim-i18n'
"--------------------------
" tool for explorer
"--------------------------
NeoBundle 'Shougo/unite.vim'
NeoBundle 'Shougo/neomru.vim'
NeoBundle 'Shougo/unite-outline'
"NeoBundle 'corntrace/bufexplorer'
"NeoBundle 'jeetsukumaran/vim-buffergator'
NeoBundle 'scrooloose/nerdtree'
"NeoBundle 'kien/ctrlp.vim'
NeoBundle 'vim-scripts/ctags.vim'
NeoBundle 'majutsushi/tagbar'
NeoBundle 'mileszs/ack.vim'
"--------------------------
" filetype syntax highlight
"--------------------------
NeoBundle 'groenewege/vim-less'
" use builtin markdown support (vim 7.3)
"NeoBundle 'plasticboy/vim-markdown'
NeoBundle 'depuracao/vim-rdoc'
NeoBundle 'tpope/vim-haml'
"NeoBundle 'mamut/vim-css-hex'
NeoBundle 'skammer/vim-css-color'
NeoBundle 'vim-scripts/AnsiEsc.vim'
" NeoBundle 'heartsentwined/vim-emblem'
" NeoBundle 'othree/yajs.vim'
" NeoBundle 'ekalinin/Dockerfile.vim'
"--------------------------
" color scheme
"--------------------------
NeoBundle 'rickharris/vim-blackboard'
NeoBundle 'altercation/vim-colors-solarized'
NeoBundle 'endel/vim-github-colorscheme'
NeoBundle 'sickill/vim-monokai'
"--------------------------
" snipmate
"--------------------------
NeoBundle 'Shougo/neocomplcache.vim'
"NeoBundle 'Shougo/neocomplete.vim'
"NeoBundle 'Shougo/vimshell.vim'
NeoBundle 'Shougo/neosnippet.vim'
NeoBundle 'Shougo/neosnippet-snippets'
NeoBundle 'honza/vim-snippets'
" NeoBundle 'wongyouth/vim-snippets', 'sugar', {'name': 'wongyouth-vim-snippets'}
"NeoBundle 'MarcWeber/vim-addon-mw-utils'
"NeoBundle 'tomtom/tlib_vim'
"NeoBundle 'garbas/vim-snipmate' "replaced with neoshippet
"NeoBundle 'SirVer/ultisnips'
"--------------------------
" HTML
"--------------------------
"NeoBundle 'nono/vim-handlebars'
NeoBundle 'digitaltoad/vim-jade'
"--------------------------
" Javascript
"--------------------------
" CoffeeScript
NeoBundle 'kchmck/vim-coffee-script'
" ES6
NeoBundle 'isRuslan/vim-es6'
" React JS
NeoBundle 'mxw/vim-jsx'
NeoBundle 'bentayloruk/vim-react-es6-snippets'
NeoBundle 'posva/vim-vue'
" NeoBundle 'darthmall/vim-vue'
" Angular JS
"NeoBundle 'burnettk/vim-angular'
"NeoBundle 'seratch/vim-angular-coffee'
"NeoBundle 'matthewsimo/angular-vim-snippets'
"-------------------------"
" Vimim for chinese input
"-------------------------"
"NeoBundle 'vimim/vimim'
NeoBundle 'elzr/vim-json'
" Supporting customized script {
if filereadable(expand("~/.vim/neobundles.vim.after"))
source ~/.vim/neobundles.vim.after
endif
" }
call neobundle#end()
filetype plugin indent on " Required!
"
" Brief help
" :NeoBundleList - list configured bundles
" :NeoBundleInstall(!) - install(update) bundles
" :NeoBundleClean(!) - confirm(or auto-approve) removal of unused bundles
" Installation check.
NeoBundleCheck