From 2474325663c730dfc264a6a9e5ec64b28183b162 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Wed, 10 Feb 2021 22:57:37 -0800 Subject: [PATCH] [zshrc] Run ssh-add -A on macOS --- zshrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/zshrc b/zshrc index 2e29c65..1fe5c56 100755 --- a/zshrc +++ b/zshrc @@ -318,3 +318,9 @@ fi if command_exists direnv; then eval "$(direnv hook zsh)" fi + +# 10. SSH keys +# ============ +if mac; then + ssh-add -A +fi