zconfig/.zshrc

14 lines
251 B
Bash
Raw Permalink Normal View History

if [[ $TTY == *tty* ]]; then
2024-02-06 18:06:49 +01:00
source ${HOME}/.zshrc.tty
2022-12-16 16:45:52 +01:00
else
2024-02-06 18:06:49 +01:00
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
2022-12-16 16:45:52 +01:00
fi