summaryrefslogtreecommitdiff
path: root/etc/env
blob: 6f3dba6ebf92c5c9770a67130cb7c75d72d83e07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
## vim:ft=zsh

: ${ZDIR:=$HOME/packages/zsh/etc}
PS4='%F{cyan}%N%F{default}:%F{yellow}%i%F{default}│'
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
export LESS='--silent --no-init --clear-screen --RAW-CONTROL-CHARS --quit-if-one-screen --ignore-case --tabs=5'

# Required for various scripts
export HOST
export COLUMNS
export LINES
if [[ -x /usr/bin/lesspipe ]] {
	export LESSOPEN='| /usr/bin/lesspipe %s'
	export LESSCLOSE='/usr/bin/lesspipe %s %s'
}