summaryrefslogtreecommitdiff
path: root/net:sweethome/host:prunelle/sys:Darwin/Environment.zsh
blob: 5fac52b55ec7ec349f2308bc9df6cb98b7e0c7c0 (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
#!/bin/zsh
##
## Part of configuration files for Zsh 4
## by Hugues Hiegel <hugues@hiegel.fr>
## 
## NO WARRANTY PROVIDED, USE AT YOUR OWN RISKS
##
## You are encouraged to use, modify, and redistribute
## these files with or without this notice.
## 

export DISPLAY=:0

## Fink / DarwinPorts

MANPATH=/usr/share/man
INFOPATH=/usr/share/info

for i in /dp /sw /usr/X11R6 ; do
	export PATH=$i/bin:$i/sbin:$PATH
	export MANPATH=$i/share/man:$MANPATH
	export INFOPATH=/$i/share/info:$INFOPATH
done

typeset -gU PATH MANPATH INFOPATH