all repos — nixfiles @ 551a4823350285057f682ef6329d347042e1a157

System and user configuration, managed by nix and home-manager

zsh: Don't init gnupg on macOS.

Assume GPG Tools are installed instead
Alan Pearce alan@alanpearce.eu
Mon, 21 Aug 2017 13:53:49 +0200
commit

551a4823350285057f682ef6329d347042e1a157

parent

d7a42ad3cef9f13d56038e18e803dcd880df9fe1

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M zsh/.config/zsh/.zshrczsh/.config/zsh/.zshrc
@@ -106,7 +106,7 @@ zstyle ':completion:*' matcher-list 'm:{a-zA-Z-_}={A-Za-z_-}' 'r:|=*' 'l:|=* r:|=*'
 zstyle ':completion:*' completer _expand _complete _match
 
-if [[ -n $commands[gpg-connect-agent] ]]
+if [[ $os -ne "darwin" && -n $commands[gpg-connect-agent] ]]
 then
   # When using SSH support, use the current TTY for passphrase prompts
   gpg-connect-agent updatestartuptty /bye > /dev/null
@@ -117,7 +117,7 @@ export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)   else
     echo "$(gpgconf --list-dirs agent-ssh-socket) doesn't exist. Is gpg-agent running ?"
   fi
-elif [[ -z $SSH_AUTH_SOCK && $commands[ssh-agent] ]]
+elif [[ -z "$SSH_AUTH_SOCK" && -n $commands[ssh-agent] ]]
 then
   eval $(ssh-agent)
 fi