From 9a0c16def293edf2fbaa4897a6a555df80d41f55 Mon Sep 17 00:00:00 2001 From: James Patrick Date: Fri, 20 Dec 2019 10:21:50 -0500 Subject: [PATCH] Inverted SSH_CONNECTION logic that I broke to test. --- zsh/zplug | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/zplug b/zsh/zplug index 675c719..20f6101 100755 --- a/zsh/zplug +++ b/zsh/zplug @@ -60,7 +60,7 @@ zplug "${ZDIR}/modules/alias/", \ from:local, \ as:plugin -if [ -z "$SSH_CONNECTION" ] ; then +if [ -n "$SSH_CONNECTION" ] ; then zplug "${ZDIR}/modules/prompt/",\ from:local,\ use:uncommon.zsh, \