Mercurial > hg > zsh-env
annotate zshrc-quad64 @ 115:78a2cec44799
add an alias for worktree
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Wed, 25 Jan 2017 08:20:15 +0100 |
parents | 60c4b60b2945 |
children | 9223e71009e4 |
rev | line source |
---|---|
11 | 1 # |
2 # zshrc for quad64 | |
3 # | |
4 | |
5 . $HOME/.zsh-env/zshrc-jdk | |
6 . $HOME/.zsh-env/zshrc-maven | |
7 | |
78
60c4b60b2945
define the build number that is used in our deployment packages
Dirk Olmes <dirk.olmes@exentra.de>
parents:
31
diff
changeset
|
8 export BUILD_NUMBER=0000 |
28
8f29a32fcdcb
use a different pager for man (one that properly displays colors)
Dirk Olmes <dirk.olmes@exentra.de>
parents:
11
diff
changeset
|
9 export MANPAGER=most |
11 | 10 export PATH="$HOME/bin:${PATH}" |
11 export PGUSER=postgres | |
12 | |
31
d12335ed421a
make the pos1 and end keys work
Dirk Olmes <dirk.olmes@exentra.de>
parents:
30
diff
changeset
|
13 bindkey '^[[1~' beginning-of-line |
d12335ed421a
make the pos1 and end keys work
Dirk Olmes <dirk.olmes@exentra.de>
parents:
30
diff
changeset
|
14 bindkey '^[[H' beginning-of-line |
d12335ed421a
make the pos1 and end keys work
Dirk Olmes <dirk.olmes@exentra.de>
parents:
30
diff
changeset
|
15 bindkey '^[[4~' end-of-line |
d12335ed421a
make the pos1 and end keys work
Dirk Olmes <dirk.olmes@exentra.de>
parents:
30
diff
changeset
|
16 bindkey '^[[F' end-of-line |
d12335ed421a
make the pos1 and end keys work
Dirk Olmes <dirk.olmes@exentra.de>
parents:
30
diff
changeset
|
17 |
11 | 18 # |
19 # aliases | |
20 # | |
21 alias bzip=pbzip2 | |
22 alias cvscheck='sh -c "cvs -n update 2>&1 | grep \?"' | |
23 alias cvsupdate='cvs -q -z3 update -dP | egrep -v "^\?.*\.d"' | |
24 alias df="df -h" | |
25 alias env="env | sort | $PAGER" | |
26 alias top=htop | |
27 | |
28 # | |
29 # functions to be used directly from the command line | |
30 # | |
31 cvsrm() { rm "$@"; cvs remove "$@" } |