You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
338 B
24 lines
338 B
#
|
|
# Executes commands at login pre-zshrc.
|
|
#
|
|
# Authors:
|
|
# 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
|
|
)
|