1
0
Fork 0

Moves the path settings to zprofile.

This is needed on Mac OS X (10.9) because /etc/zprofile is loaded after
~/.zshenv and overwrites the path settings with a call to `path_helper`.

Signed-off-by: Markus Hubig <mhubig@gmail.com>
pull/494/head
Markus Hubig 11 years ago
parent a4bacb8bb9
commit 62a4c133c6

@ -5,3 +5,19 @@
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
#
# Paths
#
typeset -gU cdpath fpath mailpath path
# Set the the list of directories that cd searches.
# cdpath=(
# $cdpath
# )
# Set the list of directories that Zsh searches for programs.
path=(
/usr/local/{bin,sbin}
$path
)

@ -29,23 +29,6 @@ if [[ -z "$LANG" ]]; then
export LANG='en_US.UTF-8'
fi
#
# Paths
#
typeset -gU cdpath fpath mailpath path
# Set the the list of directories that cd searches.
# cdpath=(
# $cdpath
# )
# Set the list of directories that Zsh searches for programs.
path=(
/usr/local/{bin,sbin}
$path
)
#
# Less
#

Loading…
Cancel
Save