*** empty log message ***
This commit is contained in:
parent
e3a79da00c
commit
48a264fcf4
37
.zshenv
37
.zshenv
|
@ -1,3 +1,4 @@
|
||||||
|
date
|
||||||
unsetopt BGNICE
|
unsetopt BGNICE
|
||||||
setopt CHASELINKS
|
setopt CHASELINKS
|
||||||
setopt AUTO_CD
|
setopt AUTO_CD
|
||||||
|
@ -10,17 +11,20 @@ unsetopt NO_CLOBBER
|
||||||
setopt NOTIFY
|
setopt NOTIFY
|
||||||
setopt NUMERIC_GLOB_SORT
|
setopt NUMERIC_GLOB_SORT
|
||||||
setopt PRINT_EXIT_VALUE
|
setopt PRINT_EXIT_VALUE
|
||||||
setopt PUSHD_IGNORE_DUPS
|
|
||||||
setopt PUSHD_SILENT
|
setopt PUSHD_SILENT
|
||||||
setopt PUSHD_TO_HOME
|
setopt PUSHD_TO_HOME
|
||||||
setopt RMSTARSILENT
|
setopt RMSTARSILENT
|
||||||
setopt NO_PROMPT_CR
|
setopt NO_PROMPT_CR
|
||||||
|
|
||||||
# fix problem with nfs
|
# fix problem with nfs
|
||||||
|
# Does this still work? I have deleted it at home.
|
||||||
|
# in any case I probably don't need it.
|
||||||
pushd ~
|
pushd ~
|
||||||
HOME=`pwd`
|
HOME=`pwd`
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
setopt PUSHD_IGNORE_DUPS
|
||||||
|
|
||||||
fpath=(~/bin/func)
|
fpath=(~/bin/func)
|
||||||
SAVEHIST=100
|
SAVEHIST=100
|
||||||
HISTSIZE=$SAVEHIST
|
HISTSIZE=$SAVEHIST
|
||||||
|
@ -81,10 +85,35 @@ then
|
||||||
fi
|
fi
|
||||||
if [ -x /usr/bin/less ]
|
if [ -x /usr/bin/less ]
|
||||||
then
|
then
|
||||||
export PAGER=/usr/bin/less
|
export PAGER="/usr/bin/less -i"
|
||||||
elif [ -x /usr/local/bin/less ]
|
elif [ -x /usr/local/bin/less ]
|
||||||
then
|
then
|
||||||
export PAGER=/usr/local/bin/less
|
export PAGER="/usr/local/bin/less -i"
|
||||||
fi
|
fi
|
||||||
export XAUTHORITY=$HOME/.Xauthority
|
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'
|
alias train='pd ~/wrk/mars/train'
|
||||||
|
|
||||||
namedir(){
|
namedir(){
|
||||||
$1=~+
|
eval "$1=~+"
|
||||||
: ~$1
|
: ~$1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
INSTALL=/usr/local/bin/install
|
include GNUmakerules
|
||||||
|
|
||||||
install: \
|
install: \
|
||||||
$(HOME)/.zlogin \
|
$(HOME)/.zlogin \
|
||||||
|
|
Loading…
Reference in New Issue