*** empty log message ***
This commit is contained in:
parent
e3a79da00c
commit
48a264fcf4
37
.zshenv
37
.zshenv
|
@ -1,3 +1,4 @@
|
|||
date
|
||||
unsetopt BGNICE
|
||||
setopt CHASELINKS
|
||||
setopt AUTO_CD
|
||||
|
@ -10,17 +11,20 @@ unsetopt NO_CLOBBER
|
|||
setopt NOTIFY
|
||||
setopt NUMERIC_GLOB_SORT
|
||||
setopt PRINT_EXIT_VALUE
|
||||
setopt PUSHD_IGNORE_DUPS
|
||||
setopt PUSHD_SILENT
|
||||
setopt PUSHD_TO_HOME
|
||||
setopt RMSTARSILENT
|
||||
setopt NO_PROMPT_CR
|
||||
|
||||
# fix problem with nfs
|
||||
# Does this still work? I have deleted it at home.
|
||||
# in any case I probably don't need it.
|
||||
pushd ~
|
||||
HOME=`pwd`
|
||||
popd
|
||||
|
||||
setopt PUSHD_IGNORE_DUPS
|
||||
|
||||
fpath=(~/bin/func)
|
||||
SAVEHIST=100
|
||||
HISTSIZE=$SAVEHIST
|
||||
|
@ -81,10 +85,35 @@ then
|
|||
fi
|
||||
if [ -x /usr/bin/less ]
|
||||
then
|
||||
export PAGER=/usr/bin/less
|
||||
export PAGER="/usr/bin/less -i"
|
||||
elif [ -x /usr/local/bin/less ]
|
||||
then
|
||||
export PAGER=/usr/local/bin/less
|
||||
export PAGER="/usr/local/bin/less -i"
|
||||
fi
|
||||
export XAUTHORITY=$HOME/.Xauthority
|
||||
export CVSROOT=/nfs/wsrdb/u/cvs
|
||||
|
||||
case "$HOST" in
|
||||
wsrk.wsr.ac.at)
|
||||
export CVSROOT=/u/cvs
|
||||
;;
|
||||
SiKitu.wsr.ac.at)
|
||||
export CVSROOT=wsrx.wsr.ac.at:/nfs/wsrk/u/cvs
|
||||
;;
|
||||
*.wsr.ac.at)
|
||||
export CVSROOT=/nfs/wsrk/u/cvs
|
||||
;;
|
||||
esac
|
||||
if test "`uname`" = Linux
|
||||
then
|
||||
limit coredumpsize 64M
|
||||
fi
|
||||
case "$HOST" in
|
||||
SiKitu.wsr.ac.at)
|
||||
export MAIL=$HOME/Maildir
|
||||
;;
|
||||
*.wsr.ac.at)
|
||||
;;
|
||||
esac
|
||||
MANPATH=/usr/local/qmail/man:/usr/man:/usr/local/man:/usr/X11R6/man
|
||||
export MANPATH
|
||||
date
|
||||
|
|
2
.zshrc
2
.zshrc
|
@ -22,7 +22,7 @@ alias ts='tail /usr/spool/mqueue/syslog'
|
|||
alias train='pd ~/wrk/mars/train'
|
||||
|
||||
namedir(){
|
||||
$1=~+
|
||||
eval "$1=~+"
|
||||
: ~$1
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
INSTALL=/usr/local/bin/install
|
||||
include GNUmakerules
|
||||
|
||||
install: \
|
||||
$(HOME)/.zlogin \
|
||||
|
|
Loading…
Reference in New Issue