zconfig/.zshrc
2024-02-06 18:06:49 +01:00

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