blob: b5f1c0bbf43eca29d9c6193836c06ab153e50e6c (
plain)
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
|
function vundle-init () {
if [ ! -d ~/.vim/bundle/vundle/ ]
then
mkdir -p ~/.vim/bundle/vundle/
fi
if [ ! -d ~/.vim/bundle/vundle/.git ] && [ ! -f ~/.vim/bundle/vundle/.git ]
then
git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
echo "\n\tRead about vim configuration for vundle at https://github.com/gmarik/vundle\n"
fi
}
function vundle () {
vundle-init
vim -c "execute \"PluginInstall\" | q | q"
}
function vundle-update () {
vundle-init
vim -c "execute \"PluginInstall!\" | q | q"
}
function vundle-clean () {
vundle-init
vim -c "execute \"PluginClean!\" | q | q"
}
|