summaryrefslogtreecommitdiff
path: root/net:sweethome/host:prunelle/Environment.zsh
blob: 248b7421df864dcfb55dcea6a9f3bff016119f86 (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
26
27
28
29
30
31
32
33
34
35
##
## 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.
## 

if ( [ "`uname -s`" = "Darwin" ] )
then
	export DISPLAY=:0

	## Fink / DarwinPorts

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

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

	typeset -gU PATH MANPATH INFOPATH
fi

PS1_USER="1"
if [ "$OSTYPE" = "linux-gnu" ]
then
	PS1_ROOT="31"
else
	PS1_ROOT="31;1"
fi