X-Git-Url: http://47.100.26.94:8080/?a=blobdiff_plain;ds=sidebyside;f=zsh%2Fzshrc;h=0f02ab5e20432f24b994c971bba4060501891575;hb=225922506cac73da6970538863babe17b954d3e6;hp=7a5b1027d3ddca0eaf71867bf57a0807210160ea;hpb=20606a1d84cc404fedb93e903104d8224d98ddd5;p=dotfiles.git diff --git a/zsh/zshrc b/zsh/zshrc index 7a5b102..0f02ab5 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,6 @@ 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 + +# export ~/.bin into PATH +export PATH="$HOME/.bin":$PATH;