From 7f9b1fe476b0a166450b1916b204418b5a2b81d4 Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Mon, 13 Mar 2023 09:05:39 +0100 Subject: [PATCH] feat(ssh): add secretive --- fish/config.fish | 3 +++ zsh/zshrc | 3 +++ 2 files changed, 6 insertions(+) diff --git a/fish/config.fish b/fish/config.fish index 38f497f..f7bf83e 100644 --- a/fish/config.fish +++ b/fish/config.fish @@ -13,6 +13,9 @@ end # asdf Version Manager source /usr/local/opt/asdf/libexec/asdf.fish +# SSH +set -x SSH_AUTH_SOCK $HOME/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh + # Volta set -gx VOLTA_HOME "$HOME/.volta" set -gx PATH "$VOLTA_HOME/bin" $PATH diff --git a/zsh/zshrc b/zsh/zshrc index 708c944..ef27443 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -7,6 +7,9 @@ COMPLETION_WAITING_DOTS="true" # Red dots while waiting for completion # Autosuggest Highlighting ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=7,bg=bold,underline" +# SSH +export SSH_AUTH_SOCK=$HOME/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh + # Set .config folder export XDG_CONFIG_HOME="$HOME/.config"