Update main entrypoint
This commit is contained in:
parent
958a3b4b1c
commit
a10c7e07ee
1 changed files with 10 additions and 2 deletions
12
.zshrc
12
.zshrc
|
@ -1,5 +1,13 @@
|
|||
if [[ $TTY == *tty* ]]; then
|
||||
source .zshrc.tty
|
||||
source ${HOME}/.zshrc.tty
|
||||
else
|
||||
source .zshrc.graphic
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue