7 lines
174 B
Plaintext
7 lines
174 B
Plaintext
if [ -f "$HOME/.config/zsh/zshrc" ]; then
|
|
source "$HOME/.config/zsh/zshrc"
|
|
else
|
|
echo "Warning: ~/.config/zsh/zshrc not found, skipping custom Zsh configuration."
|
|
fi
|
|
|