diff options
author | Timmy Keller <tjk@tjkeller.xyz> | 2021-09-04 18:58:57 -0500 |
---|---|---|
committer | Timmy Keller <tjk@tjkeller.xyz> | 2021-09-04 18:58:57 -0500 |
commit | 1671b471d5754bb58166e6d1594c1f0d3d1e0244 (patch) | |
tree | 7cacac477cc4efbe2826e8d8626268e4d37100ba /zsh/zshrc | |
parent | ab6af98aacd24fcf83451cee21c1736cf3277457 (diff) | |
download | dotconfig-1671b471d5754bb58166e6d1594c1f0d3d1e0244.tar.xz dotconfig-1671b471d5754bb58166e6d1594c1f0d3d1e0244.zip |
proper zrgument splitting for the plugin thing
Diffstat (limited to 'zsh/zshrc')
-rw-r--r-- | zsh/zshrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |