diff options
author | hugues <hugues@a0e5b806-a6f9-0310-978d-cbce73f8a913> | 2006-09-12 03:03:35 +0000 |
---|---|---|
committer | Hugues Hiegel <hugues@hiegel.fr> | 2008-03-07 14:15:10 +0100 |
commit | dd8648fcac4fc9c821a30fd2fb1f07099a65fbf4 (patch) | |
tree | 7b7d73c901476e15c731d65f76bd7836394be708 /host:prunelle/Environment.zsh | |
parent | 0ae73a79c52c871002fb520fc8b6dfaf018de7ce (diff) |
Super conf qui tue
git-svn-id: svn+ssh://hugues@maison/opt/svn/private/hugues@268 a0e5b806-a6f9-0310-978d-cbce73f8a913
Diffstat (limited to 'host:prunelle/Environment.zsh')
-rw-r--r-- | host:prunelle/Environment.zsh | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/host:prunelle/Environment.zsh b/host:prunelle/Environment.zsh new file mode 100644 index 0000000..b96764f --- /dev/null +++ b/host:prunelle/Environment.zsh @@ -0,0 +1,32 @@ +#!/bin/zsh +## +## Part of configuration files for Zsh 4 +## by Hugues Hiegel <hugues@nullpart.net> +## +## 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" +PS1_USER_SSH="$PS1_USER" +PS1_ROOT="31;1" |