2022-08-19 14:52:07 +00:00
|
|
|
#!/bin/zsh
|
|
|
|
if [ -r /etc/zprofile ]
|
2022-08-18 07:44:25 +00:00
|
|
|
then
|
2022-08-19 14:52:07 +00:00
|
|
|
. /etc/zprofile
|
|
|
|
fi
|
|
|
|
|
2022-08-23 12:13:40 +00:00
|
|
|
export _acp_ignore_shrc=1
|
|
|
|
if [ -r "$HOME/.profile" ]
|
2022-08-19 14:52:07 +00:00
|
|
|
then
|
2022-08-23 12:13:40 +00:00
|
|
|
emulate sh -c '. "$HOME/.profile"'
|
|
|
|
fi
|
|
|
|
unset _acp_ignore_shrc
|
|
|
|
|
|
|
|
if [ -r "$HOME/.zshrc" ]
|
|
|
|
then
|
|
|
|
. "$HOME/.zshrc"
|
2022-08-18 07:44:25 +00:00
|
|
|
fi
|