aboutsummaryrefslogtreecommitdiff
path: root/dot.zshrc.local
blob: cdc0a1eea971de89c3ce10cb893da3d9709703d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
. ~/.zshrc.from_grml
prompt grml
zstyle :prompt:grml:left:items:percent pre '
'
(( $+commands[bsdtar] )) && alias tar=bsdtar || echo "bsdtar not installed"
alias g=git
alias hl="highlight -O ansi"
#export PATH="${PATH}/usr/sbin:/usr/local/sbin:/sbin"
path=( $HOME/.cabal/bin(/N) $HOME/.local/bin(/N) $path )
typeset -U path
export SVN_SSH="ssh -i /home/qsuscs/.ssh/id_rsa_subversion"
ssh-add -l
function countdown {
	ENDTIME=$(date -d "$1" +%s) watch -b -e -n 1 -x sh -c 'DIFF=$(($ENDTIME - $(date +%s))); echo $(($DIFF / 60)) min $(($DIFF % 60)) s; if [ $DIFF -lt 1 ]; then exit 1; fi'
}