diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-02-15 12:00:17 +0100 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-02-15 12:00:17 +0100 |
commit | 20cb4ba71c808470008bdd33c3b4f9364947cad7 (patch) | |
tree | 23c6bb7980859c3b3a9ec5cee0e7358d83537508 /etc/env | |
parent | e11c1d5916c27c2fc257bb700bfe32a046db7789 (diff) |
still more comments
Diffstat (limited to 'etc/env')
-rw-r--r-- | etc/env | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -3,12 +3,18 @@ ZDIR=$HOME/packages/zsh/etc PS4='%{'$'\e[0;36m''%}%N%{'$'\e[0m''%}:%{'$'\e[0;33m''%}%i%{'$'\e[0m''%}│' fpath=($ZDIR/functions $ZDIR/completions $fpath) + +# Additional zshenv settings from pkg [[ -r $ZDIR/../provided/env ]] && source $ZDIR/../provided/env + +# local settings, not tracked with git [[ -r $ZDIR/local-env ]] && source $ZDIR/local-env export EDITOR==vim export MPD_HOST=saviour export CALENDAR_DIR=$HOME/stuff + +# Required for various scripts export HOST export COLUMNS export LINES |