add macports erlang to MANPATH
This commit is contained in:
parent
86b0c7ec8c
commit
7dc324b562
1 changed files with 7 additions and 0 deletions
|
|
@ -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
|
||||||
# =========
|
# =========
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue