added new git alias, changed vim-script repo paths

This commit is contained in:
Joe Fleming
2012-08-29 11:35:33 -07:00
parent 01154d387e
commit ed1dc3cf21
2 changed files with 10 additions and 9 deletions

View File

@@ -8,6 +8,7 @@ alias gp='git push'
alias gpl='git pull' alias gpl='git pull'
alias gme='git merge' alias gme='git merge'
alias gb='git branch' alias gb='git branch'
alist gst='git stash'
alias gco='git checkout' alias gco='git checkout'
alias gr='git remote' alias gr='git remote'
alias gd='git diff' alias gd='git diff'

View File

@@ -2,14 +2,14 @@
#configure vim bundles #configure vim bundles
VIM_BUNDLES=( VIM_BUNDLES=(
'https://github.com/vim-scripts/phpfolding.vim.git' 'git://github.com/vim-scripts/phpfolding.vim.git'
'https://github.com/msanders/snipmate.vim.git' 'git://github.com/msanders/snipmate.vim.git'
'https://github.com/scrooloose/syntastic.git' 'git://github.com/scrooloose/syntastic.git'
'https://github.com/kchmck/vim-coffee-script.git' 'git://github.com/kchmck/vim-coffee-script.git'
'https://github.com/altercation/vim-colors-solarized.git' 'git://github.com/altercation/vim-colors-solarized.git'
'https://github.com/digitaltoad/vim-jade.git' 'git://github.com/digitaltoad/vim-jade.git'
'https://github.com/wavded/vim-stylus.git' 'git://github.com/wavded/vim-stylus.git'
'https://github.com/tpope/vim-surround.git' 'git://github.com/tpope/vim-surround.git'
) )
#check for git #check for git
@@ -24,7 +24,7 @@ ROOT=`pwd`
# bash # bash
### ###
#clone repo #clone repo
$GIT clone https://github.com/Knewton/bash_magic.git bash/bash_magic $GIT clone git://github.com/Knewton/bash_magic.git bash/bash_magic
#install select bash magic scripts #install select bash magic scripts
cd "bash/bash_magic" cd "bash/bash_magic"