2022-08-19 14:52:07 +00:00
|
|
|
#!/bin/zsh
|
2022-08-23 12:13:40 +00:00
|
|
|
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
|
2022-09-08 09:49:03 +00:00
|
|
|
|
|
|
|
if [ -r "$HOME/.zshrc" ]
|
|
|
|
then
|
|
|
|
. "$HOME/.zshrc"
|
|
|
|
fi
|