From a10c7e07ee498079c9812fa5abd029abad0f37ff Mon Sep 17 00:00:00 2001 From: blallo Date: Tue, 6 Feb 2024 18:06:49 +0100 Subject: [PATCH] Update main entrypoint --- .zshrc | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.zshrc b/.zshrc index cedabba..08fd045 100644 --- a/.zshrc +++ b/.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