aboutsummaryrefslogtreecommitdiff
path: root/zsh
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-12-02 12:14:22 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-12-02 12:42:25 +1300
commitd0edad20fb5efc2dfc493345e1e7419c39a5558f (patch)
treeb8a8a8da3f8349b6679b83dac3f9a14678e5a407 /zsh
parentOverhaul pass(1) completion (diff)
downloaddotfiles-d0edad20fb5efc2dfc493345e1e7419c39a5558f.tar.gz
dotfiles-d0edad20fb5efc2dfc493345e1e7419c39a5558f.zip
Use consistent temp names for shell subfile vars
Diffstat (limited to 'zsh')
-rw-r--r--zsh/zshrc8
1 files changed, 4 insertions, 4 deletions
diff --git a/zsh/zshrc b/zsh/zshrc
index 2977c4d9..0e111364 100644
--- a/zsh/zshrc
+++ b/zsh/zshrc
@@ -16,8 +16,8 @@ HISTFILE=$HOME/.zsh_history
SAVEHIST=$((1 << 12))
# Load Zsh-specific startup files
-for sh in "$HOME"/.zshrc.d/*.zsh ; do
- [[ -e $sh ]] || continue
- source "$sh"
+for zsh in "$HOME"/.zshrc.d/*.zsh ; do
+ [[ -e $zsh ]] || continue
+ source "$zsh"
done
-unset -v sh
+unset -v zsh