Browse Source

fix zlocal

master
xenua 3 years ago
parent
commit
a03686e472
Signed by: xenua
GPG Key ID: 8F93B68BD37255B8
  1. 2
      runcoms/zlogin
  2. 2
      runcoms/zlogout
  3. 2
      runcoms/zprofile
  4. 2
      runcoms/zshenv
  5. 2
      runcoms/zshrc

2
runcoms/zlogin

@ -25,5 +25,5 @@ if [[ -o INTERACTIVE && -t 2 ]]; then
fi >&2 fi >&2
source .zlocal/login 2> /dev/null || true source $HOME/.zlocal/login 2> /dev/null || true

2
runcoms/zlogout

@ -18,5 +18,5 @@ echo $SAYINGS[$(($RANDOM % ${#SAYINGS} + 1))]
} >&2 } >&2
source '.zlocal/logout' 2> /dev/null || true source $HOME/.zlocal/logout 2> /dev/null || true

2
runcoms/zprofile

@ -66,5 +66,5 @@ if [[ -z "$LESSOPEN" ]] && (( $#commands[(i)lesspipe(|.sh)] )); then
export LESSOPEN="| /usr/bin/env $commands[(i)lesspipe(|.sh)] %s 2>&-" export LESSOPEN="| /usr/bin/env $commands[(i)lesspipe(|.sh)] %s 2>&-"
fi fi
source .zlocal/profile 2> /dev/null || true source $HOME/.zlocal/profile 2> /dev/null || true

2
runcoms/zshenv

@ -10,5 +10,5 @@ if [[ ( "$SHLVL" -eq 1 && ! -o LOGIN ) && -s "${ZDOTDIR:-$HOME}/.zprofile" ]]; t
source "${ZDOTDIR:-$HOME}/.zprofile" source "${ZDOTDIR:-$HOME}/.zprofile"
fi fi
source .zlocal/env 2> /dev/null || true source $HOME/.zlocal/env 2> /dev/null || true

2
runcoms/zshrc

@ -32,5 +32,5 @@ if [ -d "$HOME/bin" ]; then
export PATH="$HOME/bin:$PATH" export PATH="$HOME/bin:$PATH"
fi fi
source .zlocal/rc 2> /dev/null || true source $HOME/.zlocal/rc 2> /dev/null || true

Loading…
Cancel
Save