summaryrefslogtreecommitdiff
path: root/etc/.zshenv
diff options
context:
space:
mode:
Diffstat (limited to 'etc/.zshenv')
-rw-r--r--etc/.zshenv12
1 files changed, 6 insertions, 6 deletions
diff --git a/etc/.zshenv b/etc/.zshenv
index 45c601b..3ff22a6 100644
--- a/etc/.zshenv
+++ b/etc/.zshenv
@@ -1,15 +1,15 @@
## vim:ft=zsh
-: ${ZDIR:=$HOME/packages/zsh/etc}
+: ${ZDIR:=${HOME}/packages/zsh/etc}
PS4='%b%u%s%k%F{cyan}%N%F{default}:%F{yellow}%i%F{default}│'
-fpath=($ZDIR/functions $ZDIR/completions $fpath)
+fpath=(${ZDIR}/functions ${ZDIR}/completions ${fpath})
# Additional zshenv settings from caretaker
-[[ -r $ZDIR/../provided/env ]] && source $ZDIR/../provided/env
+[[ -r ${ZDIR}/../provided/env ]] && source ${ZDIR}/../provided/env
export EDITOR==vim
export MPD_HOST=mpd
-export CALENDAR_DIR=$HOME/stuff
+export CALENDAR_DIR=${HOME}/stuff
export LESS='--silent --no-init --clear-screen --RAW-CONTROL-CHARS --quit-if-one-screen --ignore-case --tabs=5'
# Required for various scripts
@@ -17,10 +17,10 @@ export HOST
export COLUMNS
export LINES
-if [[ -n $commands[lesspipe] ]] {
+if [[ -n ${commands[lesspipe]} ]] {
export LESSOPEN='| lesspipe %s'
export LESSCLOSE='lesspipe %s %s'
}
# local settings, not tracked with git
-[[ -r $ZDIR/local-env ]] && source $ZDIR/local-env
+[[ -r ${ZDIR}/local-env ]] && source ${ZDIR}/local-env