Compare commits

...

2 commits

Author SHA1 Message Date
b88e2c1ba9 only load ssh key if it exists 2023-04-25 10:35:27 -05:00
ea47387583 initialize and load ssh-agent 2023-04-25 10:32:08 -05:00

View file

@ -30,4 +30,8 @@ fi
if type mcfly > /dev/null; then
eval "$(mcfly init zsh)"
fi
if [ -f $HOME/.ssh/id_ed25519 ]; then
eval "$(ssh-agent)"
ssh-add $HOME/.ssh/id_ed25519
fi