summaryrefslogtreecommitdiff
path: root/zsh/zshrc
diff options
context:
space:
mode:
authorTimmy Keller <tjk@tjkeller.xyz>2021-09-04 18:58:57 -0500
committerTimmy Keller <tjk@tjkeller.xyz>2021-09-04 18:58:57 -0500
commit1671b471d5754bb58166e6d1594c1f0d3d1e0244 (patch)
tree7cacac477cc4efbe2826e8d8626268e4d37100ba /zsh/zshrc
parentab6af98aacd24fcf83451cee21c1736cf3277457 (diff)
downloaddotconfig-1671b471d5754bb58166e6d1594c1f0d3d1e0244.tar.xz
dotconfig-1671b471d5754bb58166e6d1594c1f0d3d1e0244.zip
proper zrgument splitting for the plugin thing
Diffstat (limited to 'zsh/zshrc')
-rw-r--r--zsh/zshrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/zsh/zshrc b/zsh/zshrc
index c6f2cc4..7e93b0a 100644
--- a/zsh/zshrc
+++ b/zsh/zshrc
@@ -40,6 +40,6 @@ if [ -n "$DISPLAY" ]; then
fi
# Load zsh plugins; should be last
-for plugin in $ZPLUGINS; do
+for plugin in ${=ZPLUGINS}; do
source $plugin
done