[zshrc] Run ssh-add -A on macOS

This commit is contained in:
Sami Samhuri 2021-02-10 22:57:37 -08:00
parent 2829824fcb
commit 2474325663

6
zshrc
View file

@ -318,3 +318,9 @@ fi
if command_exists direnv; then if command_exists direnv; then
eval "$(direnv hook zsh)" eval "$(direnv hook zsh)"
fi fi
# 10. SSH keys
# ============
if mac; then
ssh-add -A
fi