X-Git-Url: http://47.100.26.94:8080/?a=blobdiff_plain;f=zsh%2Fzshrc;h=4663a0667b30bdb9964f0dcb0cfaafd74e95ffa0;hb=9d9379e9edb9a1d7ec3ad25617c0bba6d4522921;hp=7a5b1027d3ddca0eaf71867bf57a0807210160ea;hpb=20606a1d84cc404fedb93e903104d8224d98ddd5;p=dotfiles.git diff --git a/zsh/zshrc b/zsh/zshrc index 7a5b102..4663a06 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -3,6 +3,9 @@ # Darwin or Linux OSNAME=`uname` +# For Emacs Tramp mode +[[ $TERM == "dumb" ]] && unsetopt zle && PS1='$ ' && return + autoload colors colors @@ -309,3 +312,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;