diff --git a/runcoms/zlogin b/runcoms/zlogin index 896d10b..f0f9cb1 100644 --- a/runcoms/zlogin +++ b/runcoms/zlogin @@ -25,5 +25,5 @@ if [[ -o INTERACTIVE && -t 2 ]]; then fi >&2 -source .zlocal/login 2> /dev/null || true +source $HOME/.zlocal/login 2> /dev/null || true diff --git a/runcoms/zlogout b/runcoms/zlogout index a1d675a..33be320 100644 --- a/runcoms/zlogout +++ b/runcoms/zlogout @@ -18,5 +18,5 @@ echo $SAYINGS[$(($RANDOM % ${#SAYINGS} + 1))] } >&2 -source '.zlocal/logout' 2> /dev/null || true +source $HOME/.zlocal/logout 2> /dev/null || true diff --git a/runcoms/zprofile b/runcoms/zprofile index 5139f49..65a9fac 100644 --- a/runcoms/zprofile +++ b/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>&-" fi -source .zlocal/profile 2> /dev/null || true +source $HOME/.zlocal/profile 2> /dev/null || true diff --git a/runcoms/zshenv b/runcoms/zshenv index be1048f..56355e9 100644 --- a/runcoms/zshenv +++ b/runcoms/zshenv @@ -10,5 +10,5 @@ if [[ ( "$SHLVL" -eq 1 && ! -o LOGIN ) && -s "${ZDOTDIR:-$HOME}/.zprofile" ]]; t source "${ZDOTDIR:-$HOME}/.zprofile" fi -source .zlocal/env 2> /dev/null || true +source $HOME/.zlocal/env 2> /dev/null || true diff --git a/runcoms/zshrc b/runcoms/zshrc index e3faed6..133397b 100644 --- a/runcoms/zshrc +++ b/runcoms/zshrc @@ -32,5 +32,5 @@ if [ -d "$HOME/bin" ]; then export PATH="$HOME/bin:$PATH" fi -source .zlocal/rc 2> /dev/null || true +source $HOME/.zlocal/rc 2> /dev/null || true