summaryrefslogtreecommitdiff
path: root/net:sweethome/host:prunelle/sys:Darwin/Environment.zsh
diff options
context:
space:
mode:
authorHugues Hiegel <hugues@hiegel.fr>2009-03-10 11:55:35 +0100
committerHugues Hiegel <hugues@hiegel.fr>2009-06-04 23:35:40 +0200
commit18a21d023d93b820ca1e1a876af26e7fd85fc35e (patch)
tree7aa3cead06b34c603a7fee7e5438a1aafbdf5ab9 /net:sweethome/host:prunelle/sys:Darwin/Environment.zsh
parent595765301aae9c7dafa01aa3d89b654968cb2380 (diff)
[Prunelle] Specific config for Darwin-OS
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..dd8d36a
--- /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 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