13 lines
251 B
Bash
13 lines
251 B
Bash
if [[ $TTY == *tty* ]]; then
|
|
source ${HOME}/.zshrc.tty
|
|
else
|
|
source ${HOME}/.zshrc.graphic
|
|
fi
|
|
|
|
if [[ -f ${HOME}/.zshrc.local ]]; then
|
|
source ${HOME}/.zshrc.local
|
|
fi
|
|
|
|
if [[ -f ${HOME}/.zshrc.koyeb ]]; then
|
|
source ${HOME}/.zshrc.koyeb
|
|
fi
|