2011-09-13 11:26:35 -07:00
|
|
|
# .zshenv
|
|
|
|
# vim: ft=zsh
|
|
|
|
# Eryn Wells <eryn@erynwells.me>
|
|
|
|
|
2018-04-14 09:41:42 -07:00
|
|
|
# Don't read global startup. It messes things up...
|
|
|
|
unsetopt GLOBAL_RCS
|
|
|
|
|
2021-12-31 10:27:27 -08:00
|
|
|
export SYS=`uname -s | tr A-Z a-z`
|
2012-04-10 10:11:14 -07:00
|
|
|
|
2021-12-31 10:27:27 -08:00
|
|
|
fpath=("$HOME/.zsh/func" $fpath)
|
|
|
|
autoload +X prepend_to_path
|
|
|
|
autoload +X append_to_path
|
|
|
|
autoload +X init_env
|
|
|
|
autoload +X init_env_python
|
|
|
|
autoload +X init_path
|
|
|
|
|
|
|
|
init_path
|
|
|
|
init_env
|
|
|
|
init_env_python
|
|
|
|
|
2022-01-22 10:13:05 -08:00
|
|
|
if autoload +X init_env_$SYS; then
|
2021-12-31 10:27:27 -08:00
|
|
|
init_env_$SYS
|
|
|
|
fi
|