add macports erlang to MANPATH

This commit is contained in:
Sami Samhuri 2010-03-06 21:47:33 -08:00
parent 86b0c7ec8c
commit 7dc324b562

View file

@ -29,11 +29,18 @@ fi
if mac; then if mac; then
export EDITOR="emacsclient" export EDITOR="emacsclient"
export VISUAL="emacsclient" export VISUAL="emacsclient"
export MANPATH="/opt/local/lib/erlang/man:$MANPATH"
elif linux; then elif linux; then
export EDITOR="emacs -nw" export EDITOR="emacs -nw"
export VISUAL="emacs" export VISUAL="emacs"
fi fi
ALIASES="$ZDOTDIR/aliases"
function add_alias {
echo "alias $1='$2'" >> "$ALIASES";
#echo Adding alias: `tail -1 "$ALIASES"`;
}
# 2. Limits # 2. Limits
# ========= # =========