Created
January 10, 2015 04:36
-
-
Save introom/fd0e1526749bac877185 to your computer and use it in GitHub Desktop.
Apple's shipped /etc/zshenv sucks. The path_helper is broken.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# system-wide environment settings for zsh(1) | |
# | |
# NB the following file is broken, per ##zsh channel. | |
# if [ -x /usr/libexec/path_helper ]; then | |
# eval `/usr/libexec/path_helper -s` | |
# fi | |
# | |
# custom | |
# ensure no duplicate | |
typeset -gU path | |
path=( | |
$path | |
/opt/X11/bin | |
/usr/texbin | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment