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 | |
parent | ab6af98aacd24fcf83451cee21c1736cf3277457 (diff) | |
download | dotconfig-1671b471d5754bb58166e6d1594c1f0d3d1e0244.tar.xz dotconfig-1671b471d5754bb58166e6d1594c1f0d3d1e0244.zip |
proper zrgument splitting for the plugin thing
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/zprofile.G3N2 | 6 | ||||
-rw-r--r-- | zsh/zprofile.openbsdx230 | 6 | ||||
-rw-r--r-- | zsh/zprofile.voidx250 | 6 | ||||
-rw-r--r-- | zsh/zshrc | 2 |
4 files changed, 10 insertions, 10 deletions
diff --git a/zsh/zprofile.G3N2 b/zsh/zprofile.G3N2 index c62022d..ba569af 100644 --- a/zsh/zprofile.G3N2 +++ b/zsh/zprofile.G3N2 @@ -1,12 +1,12 @@ -#!/bin/zsh +#!/usr/bin/env zsh # vim: filetype=zsh export WIFIDEV="wlp2s0f0u3" export ETHEDEV="eno1" export PATH="/home/timmy/scripts/pkgmgt/emerge:$PATH" -export ZPLUGINS=( +export ZPLUGINS=" /usr/share/zsh/plugins/zsh-vim-mode/zsh-vim-mode.plugin.zsh /usr/share/zsh/site-functions/zsh-syntax-highlighting.zsh -) +" alias \ e="sudo emerge" \ eaum="sudo emerge --autounmask-continue" \ diff --git a/zsh/zprofile.openbsdx230 b/zsh/zprofile.openbsdx230 index 0229c1a..4abb5f1 100644 --- a/zsh/zprofile.openbsdx230 +++ b/zsh/zprofile.openbsdx230 @@ -1,10 +1,10 @@ -#!/bin/zsh +#!/usr/bin/env zsh # vim: filetype=zsh export WIFIDEV="iwn0" export ETHEDEV="em0" export LC_CTYPE=en_US.UTF-8 #/usr/share/zsh/plugins/zsh-vim-mode/zsh-vim-mode.plugin.zsh -export ZPLUGINS=( +export ZPLUGINS=" /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh -) +" source /home/timmy/.config/zsh/zprofile.base diff --git a/zsh/zprofile.voidx250 b/zsh/zprofile.voidx250 index 49feb89..2964002 100644 --- a/zsh/zprofile.voidx250 +++ b/zsh/zprofile.voidx250 @@ -1,12 +1,12 @@ -#!/bin/zsh +#!/usr/bin/env zsh # vim: filetype=zsh export WIFIDEV="wlp3s0" export ETHEDEV="enp0s25" export PATH="/home/timmy/scripts/pkgmgt/xbps:$PATH" -export ZPLUGINS=( +export ZPLUGINS=" /usr/share/zsh/plugins/zsh-vim-mode/zsh-vim-mode.plugin.zsh /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh -) +" alias \ xi="sudo xbps-install" \ xq="xbps-query -R --search" \ @@ -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 |