blob: 31e734b6c45f2ee53e9bba4510c918a2df416ace (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
## vim:ft=zsh
ZDIR=$HOME/packages/zsh/etc
PS4='%{'$'\e[0;36m''%}%N%{'$'\e[0m''%}:%{'$'\e[0;33m''%}%i%{'$'\e[0m''%}│'
fpath=($ZDIR/functions $ZDIR/completions $fpath)
[[ -r $ZDIR/../provided/env ]] && source $ZDIR/../provided/env
[[ -r $ZDIR/local-env ]] && source $ZDIR/local-env
export EDITOR==vim
export MPD_HOST=saviour
export CALENDAR_DIR=$HOME/stuff
export HOST
export COLUMNS
export LINES
if [[ -x /usr/bin/lesspipe ]] {
export LESSOPEN='| /usr/bin/lesspipe %s'
export LESSCLOSE='/usr/bin/lesspipe %s %s'
}
|