summaryrefslogtreecommitdiff
path: root/net:sweethome/host:prunelle/sys:Darwin/Environment.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'net:sweethome/host:prunelle/sys:Darwin/Environment.zsh')
-rw-r--r--net:sweethome/host:prunelle/sys:Darwin/Environment.zsh25
1 files changed, 25 insertions, 0 deletions
diff --git a/net:sweethome/host:prunelle/sys:Darwin/Environment.zsh b/net:sweethome/host:prunelle/sys:Darwin/Environment.zsh
new file mode 100644
index 0000000..5fac52b
--- /dev/null
+++ b/net:sweethome/host:prunelle/sys:Darwin/Environment.zsh
@@ -0,0 +1,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