forked from amix/vimrc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsubmodule_update.py
24 lines (16 loc) · 994 Bytes
/
submodule_update.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import os
MY_PLUGINS = './my_plugins'
os.system('rm -rf %s/jedi-vim' % MY_PLUGINS)
os.system('git clone https://github.com/davidhalter/jedi-vim %s/jedi-vim' % MY_PLUGINS)
os.system('rm -rf %s/syntastic' % MY_PLUGINS)
os.system('git clone https://github.com/vim-syntastic/syntastic %s/syntastic' % MY_PLUGINS)
os.system('rm -rf %s/tsuquyomi' % MY_PLUGINS)
os.system('git clone https://github.com/Quramy/tsuquyomi %s/tsuquyomi' % MY_PLUGINS)
os.system('rm -rf %s/vim-autoformat' % MY_PLUGINS)
os.system('git clone https://github.com/Chiel92/vim-autoformat %s/vim-autoformat' % MY_PLUGINS)
os.system('rm -rf %s/tagbar' % MY_PLUGINS)
os.system('git clone https://github.com/majutsushi/tagbar %s/tagbar' % MY_PLUGINS)
os.system('rm -rf %s/typescript-vim' % MY_PLUGINS)
os.system('git clone https://github.com/leafgarland/typescript-vim %s/typescript-vim' % MY_PLUGINS)
os.system('rm -rf %s/nim.vim' % MY_PLUGINS)
os.system('git clone https://github.com/zah/nim.vim %s/nim.vim' % MY_PLUGINS)