dot/.zshrc

101 lines
1.6 KiB
Bash
Raw Normal View History

1996-07-14 20:57:01 +02:00
umask 022
bindkey -v
REPORTTIME=1
alias amke=make
alias arm=/bin/rm
alias a=alias
alias h=history
alias j=jobs
alias v=vi
alias lo=logout
alias md=mkdir
alias pop=popd
alias rd=rmdir
alias fixsz='set noglob; eval `resize`;unset noglob'
alias ls='ls -F'
1999-10-12 22:15:43 +02:00
if ls -hld > /dev/null 2>/dev/null
then
alias ll='ls -lFh'
else
alias ll='ls -lF'
fi
alias la='ls -alsF'
1999-08-30 09:48:41 +02:00
alias cup='cvs -q update -d -P'
2005-12-20 20:37:38 +01:00
alias digs='dig +nocomments +nostats +nocmd'
if ack=`whence ack-grep`
2011-01-29 10:55:48 +01:00
then
alias ack=$ack
2011-01-29 10:55:48 +01:00
fi
1995-07-27 10:20:11 +02:00
namedir(){
1997-07-19 15:40:36 +02:00
eval "$1=~+"
1995-07-27 10:20:11 +02:00
: ~$1
}
pd(){
if [[ $# = 0 ]]
then
pushd +1
else
pushd "$@"
fi
namedir $(echo $(basename $PWD | tr -cd 'A-Za-z0-9_') | sed -e 's/^[0-9]/_&/')
1995-07-27 10:20:11 +02:00
}
setenv(){
$1=$2
export $1
}
harden(){
cp -p "$1" .harden.$$ && mv .harden.$$ "$1"
}
dup(){
mv $1 $1.orig && cp -p $1.orig $1
}
cls() { clear; true }
source ~/.znewterm
2004-04-23 22:33:05 +02:00
2004-06-22 12:03:03 +02:00
# assume pseudo terminals are from a "safe" terminal
# other terminals are probably from a console and should
# auto-logout after some time.
case `tty` in
/dev/pts/*)
2004-10-25 12:54:21 +02:00
TMOUT=14400
2004-06-22 12:03:03 +02:00
;;
*)
TMOUT=3600
esac
2009-09-24 15:29:33 +02:00
# and screen sessions shouldn't terminate at all ...
case "$TERM" in
screen)
unset TMOUT
;;
esac
if [ -z "$EDITOR" ]
then
export EDITOR=vi
fi
# prepend local function dir if we have one.
#
# Important: Don't clobber FPATH. It's needed for completion and usually
# contains a lot of directories (at least on Debian systems) and you
# don't want to recreate that mess manually.
if [ -d ~/bin/func ]
then
FPATH=`preppath -v FPATH ~/bin/func`
fi
2007-03-07 12:16:09 +01:00
# for new style completion:
autoload -U compinit
compinit