mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2024-05-11 05:55:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			591 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			591 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
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
 | 
						|
    echo "\n\tRead about vim configuration for vundle at https://github.com/gmarik/vundle\n"
 | 
						|
  fi
 | 
						|
}
 | 
						|
 | 
						|
function vundle () {
 | 
						|
  vundle-init
 | 
						|
  vim -c "execute \"BundleInstall\" | q | q"
 | 
						|
}
 | 
						|
 | 
						|
function vundle-update () {
 | 
						|
  vundle-init
 | 
						|
  vim -c "execute \"BundleInstall!\" | q | q"
 | 
						|
}
 | 
						|
 | 
						|
function vundle-clean () {
 | 
						|
  vundle-init
 | 
						|
  vim -c "execute \"BundleClean!\" | q | q"
 | 
						|
}
 |