From 872b250d158efefa8d1308a779b857af838ab960 Mon Sep 17 00:00:00 2001 From: Nikolas Weger Date: Fri, 27 Aug 2021 11:55:57 +0200 Subject: [PATCH] Update dot_zshenv --- dot_zshenv | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/dot_zshenv b/dot_zshenv index cc6985e..f7ffaec 100644 --- a/dot_zshenv +++ b/dot_zshenv @@ -7,20 +7,18 @@ # environment variables in ~/.zshenv, do it where indicated by comments below. if [ -n "${ZSH_VERSION-}" ]; then - : ${ZDOTDIR:=~} - setopt no_global_rcs - if [[ -o no_interactive && -z "${Z4H_BOOTSTRAPPING-}" ]]; then - return - fi - setopt no_rcs - unset Z4H_BOOTSTRAPPING - # If you are certain that you must export some environment variables # in ~/.zshenv (see comments at the top!), do it here: # # export GOPATH=$HOME/go # # Do not change anything else in this file. + + : ${ZDOTDIR:=~} + setopt no_global_rcs + [[ -o no_interactive && -z "${Z4H_BOOTSTRAPPING-}" ]] && return + setopt no_rcs + unset Z4H_BOOTSTRAPPING fi Z4H_URL="https://raw.githubusercontent.com/romkatv/zsh4humans/v5"