From bc1416472cf912c2093a98211e6a453d724453bc Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sat, 28 Jan 2023 18:49:43 -0600 Subject: [PATCH] feat(zsh): invoke ssh-agent --- dots/.config/zsh/config/profile/profile/env.zsh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dots/.config/zsh/config/profile/profile/env.zsh b/dots/.config/zsh/config/profile/profile/env.zsh index 491a1c34..5a0240a9 100644 --- a/dots/.config/zsh/config/profile/profile/env.zsh +++ b/dots/.config/zsh/config/profile/profile/env.zsh @@ -8,6 +8,9 @@ export ZSH_HIGHLIGHT_MAXLENGTH=10000 export ZSH_AUTOSUGGEST_BUFFER_MAX_SIZE=2 export ZSH_AUTOSUGGEST_STRATEGY=(history completion) +### SSH ### +eval "$(ssh-agent -s)" >/dev/null 2>&1 + ### FZF ### export FZF_DEFAULT_COMMAND='fd --hidden --exclude .git --color=always'