Files
bash-it/plugins/available/latex.plugin.bash
2012-05-13 22:13:54 -04:00

10 lines
230 B
Bash

cite about-plugin
about-plugin 'use mactex'
# add mactex to the path if its present
MACTEX_PATH=/usr/local/texlive/2009/bin/universal-darwin
if [[ -d $MACTEX_PATH ]]; then
export PATH=$PATH:$MACTEX_PATH
fi
unset MACTEX_PATH