From 3c2e72a8be75901e546950e9bc258f8e00fa90ac Mon Sep 17 00:00:00 2001 From: Max Wash Date: Sat, 21 Feb 2026 18:41:48 +0000 Subject: [PATCH] zsh: source .zshenv for system-specific configuration --- zsh/init.zsh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/zsh/init.zsh b/zsh/init.zsh index 95b03b1..8fffb44 100644 --- a/zsh/init.zsh +++ b/zsh/init.zsh @@ -1,4 +1,5 @@ zshrc=~/.zshrc +zshenv=~/.zshenv if [ -z $zshrc ]; then echo "Err: Cannot find dotfile directory." exit -1 @@ -48,3 +49,10 @@ source $zsh_dir/commands.zsh # KEYBIND initialisation source $zsh_dir/keybind.zsh + + +# SYSTEM-SPECIFIC initialisation + +if [ -z $zshenv ]; then + source $zshenv +fi