mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-08-05 16:48:38 +00:00

- split zsh into many files - add bash support - cleaned up lots of stuff, created a commonsh folder for common stuff between bash and zsh - commonsh supports an order of execution, deliminated by filename. This is to enforce dependencies All of these changes were needed so that we could sensibly continue to extend the system
26 lines
467 B
Text
Executable file
26 lines
467 B
Text
Executable file
if [[ -d /opt/local/man ]] ; then
|
|
if [[ -z "${MANPATH}" ]] ; then
|
|
MANPATH="/opt/local/man":$(manpath)
|
|
else
|
|
MANPATH="/opt/local/man:${MANPATH}"
|
|
fi
|
|
export MANPATH
|
|
fi
|
|
|
|
if [[ -d /opt/local/bin ]] ; then
|
|
if [[ -z "${PATH}" ]] ; then
|
|
PATH="/opt/local/bin"
|
|
else
|
|
PATH="/opt/local/bin:${PATH}"
|
|
fi
|
|
fi
|
|
|
|
if [[ -d /opt/local/sbin ]] ; then
|
|
PATH="/opt/local/sbin:${PATH}"
|
|
fi
|
|
|
|
if [[ -d /opt/local/libexec ]] ; then
|
|
PATH="/opt/local/libexec:${PATH}"
|
|
fi
|
|
|
|
export PATH
|