summaryrefslogtreecommitdiff
path: root/zsh
diff options
context:
space:
mode:
Diffstat (limited to 'zsh')
-rw-r--r--zsh/zprofile.G3N26
-rw-r--r--zsh/zprofile.openbsdx2306
-rw-r--r--zsh/zprofile.voidx2506
-rw-r--r--zsh/zshrc2
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" \
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