mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 00:40:07 +00:00
vundle plugin refactored
first it checks existens of vundle plugin, if plugin dont exist run git clone
This commit is contained in:
parent
7ef7ffc5eb
commit
499819ced1
1 changed files with 22 additions and 3 deletions
|
@ -1,3 +1,22 @@
|
|||
alias vundle-init='git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle'
|
||||
alias vundle='vim -c "execute \"BundleInstall\" | q"'
|
||||
alias vundle-update='vim -c "execute \"BundleInstall!\" | q"'
|
||||
function vundle-init () {
|
||||
if [ ! -d ~/.vim/bundle/vundle/ ]
|
||||
then
|
||||
mkdir -p ~/.vim/bundle/vundle/
|
||||
fi
|
||||
|
||||
if [ ! -d ~/.vim/bundle/vundle/.git/ ]
|
||||
then
|
||||
git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
|
||||
fi
|
||||
}
|
||||
|
||||
function vundle () {
|
||||
vundle-init
|
||||
vim -c "execute \"BundleInstall\" | q"
|
||||
}
|
||||
|
||||
|
||||
function vundle-update () {
|
||||
vundle-init
|
||||
vim -c "execute \"BundleInstall!\" | q"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue