X-Git-Url: http://47.100.26.94:8080/?a=blobdiff_plain;f=zsh%2Fzshrc;h=6056f55795033865701699ce51634e8036225011;hb=9536eb7be7c32ee135578647a0276514a6aa54fc;hp=1ea7de2dd8c022fb0cade2e02f04145f2dde61b5;hpb=22f28f7c2a5db5aa66de01e75d614ba18e60642b;p=dotfiles.git diff --git a/zsh/zshrc b/zsh/zshrc index 1ea7de2..6056f55 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -114,7 +114,14 @@ alias ln='ln -i' #alias svn='colorsvn' alias sed='/usr/local/bin/gsed' +##### Git +alias 'gs'='git status' +alias 'ga'='git add' +alias 'gc'='git commit' +alias 'gl'='git log --oneline --graph --all --color --decorate --abbrev-commit' alias 'git-log'='git log --oneline --graph --all --color --decorate --abbrev-commit' +alias 'gdiff'='git diff' +alias 'gpush'='git push origin master' @@ -312,3 +319,10 @@ if [[ $OSNAME == 'Darwin' ]]; then PERL_MB_OPT="--install_base \"$HOME/perl5\""; export PERL_MB_OPT; PERL_MM_OPT="INSTALL_BASE=$HOME/perl5"; export PERL_MM_OPT; fi + +# add Racket into PATH +export PATH="/Applications/Racket v6.6/bin":$PATH; +export MANPATH="/Applications/Racket v6.6/man":$MANPATH; + +# export ~/.bin into PATH +export PATH="$HOME/.bin":$PATH;