From e61298b8cbc505afde0ccb50b8a8ee0d0758d37d Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Mon, 20 Jan 2025 10:45:29 +0100 Subject: [PATCH] ZSH Config: load zprofile --- Configs/ZSHShell/.zshrc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Configs/ZSHShell/.zshrc b/Configs/ZSHShell/.zshrc index f1f56ba..87a06ea 100644 --- a/Configs/ZSHShell/.zshrc +++ b/Configs/ZSHShell/.zshrc @@ -130,3 +130,13 @@ source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh # Colorize the output of the "ls" shell command via LS_COLORS . /usr/share/LS_COLORS/dircolors.sh ################################################################################### + +################################################################################### +# Load profile configs +################################################################################### +if [ -r "$HOME/.zprofile" ] ; then + source ~/.zprofile +fi +################################################################################### + +####################################################################################################################################################