.zshrc: Add BasicTeX directory to PATH

Signed-off-by: Alan Orth <alan.orth@gmail.com>
This commit is contained in:
Alan Orth 2015-06-11 22:56:01 +03:00
parent a4556ba78a
commit eab699691e
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 4 additions and 0 deletions

4
.zshrc
View File

@ -43,6 +43,10 @@ if [[ "$OSTYPE" =~ ^darwin.*$ ]]; then
alias sed='gsed'
alias dircolors='gdircolors'
# If BasicTeX installation exists, add it to PATH
# See: https://tug.org/mactex/morepackages.html
[[ -d /usr/local/texlive/2014basic/bin/x86_64-darwin ]] && PATH=$PATH:/usr/local/texlive/2014basic/bin/x86_64-darwin
elif [[ "$OSTYPE" =~ ^linux.*$ ]]; then
# aliases
alias ls='ls -F --color=auto'