view zshrc-quad64 @ 63:a543849b6888

add alias for listing tmux sessions
author Dirk Olmes <dirk@xanthippe.ping.de>
date Tue, 10 Feb 2015 16:06:47 +0100
parents d12335ed421a
children 60c4b60b2945
line wrap: on
line source

#
# zshrc for quad64
#

. $HOME/.zsh-env/zshrc-jdk
. $HOME/.zsh-env/zshrc-maven

export MANPAGER=most
export PATH="$HOME/bin:${PATH}"
export PGUSER=postgres

bindkey '^[[1~' beginning-of-line
bindkey '^[[H'  beginning-of-line
bindkey '^[[4~' end-of-line
bindkey '^[[F'  end-of-line

#
# aliases
#
alias bzip=pbzip2
alias cvscheck='sh -c "cvs -n update 2>&1 | grep \?"'
alias cvsupdate='cvs -q -z3 update -dP | egrep -v "^\?.*\.d"'
alias df="df -h"
alias env="env | sort | $PAGER"
alias top=htop

#
# functions to be used directly from the command line
#
cvsrm() { rm "$@"; cvs remove "$@" }