Mercurial > hg > zsh-env
annotate zshrc-quad64 @ 135:3dd5b3b873aa
jdk9 is gone, hello jdk10
| author | Dirk Olmes <dirk@xanthippe.ping.de> |
|---|---|
| date | Tue, 03 Jul 2018 02:24:49 +0200 |
| parents | 9223e71009e4 |
| children |
| rev | line source |
|---|---|
| 11 | 1 # |
| 2 # zshrc for quad64 | |
| 3 # | |
| 4 | |
| 113 | 5 . $HOME/.zsh-env/zshrc-gentoo |
| 11 | 6 . $HOME/.zsh-env/zshrc-jdk |
| 7 . $HOME/.zsh-env/zshrc-maven | |
| 8 | |
|
78
60c4b60b2945
define the build number that is used in our deployment packages
Dirk Olmes <dirk.olmes@exentra.de>
parents:
31
diff
changeset
|
9 export BUILD_NUMBER=0000 |
| 113 | 10 #export MANPAGER=most |
| 11 | 11 export PATH="$HOME/bin:${PATH}" |
| 12 export PGUSER=postgres | |
| 13 | |
|
31
d12335ed421a
make the pos1 and end keys work
Dirk Olmes <dirk.olmes@exentra.de>
parents:
30
diff
changeset
|
14 bindkey '^[[1~' beginning-of-line |
|
d12335ed421a
make the pos1 and end keys work
Dirk Olmes <dirk.olmes@exentra.de>
parents:
30
diff
changeset
|
15 bindkey '^[[H' beginning-of-line |
|
d12335ed421a
make the pos1 and end keys work
Dirk Olmes <dirk.olmes@exentra.de>
parents:
30
diff
changeset
|
16 bindkey '^[[4~' end-of-line |
|
d12335ed421a
make the pos1 and end keys work
Dirk Olmes <dirk.olmes@exentra.de>
parents:
30
diff
changeset
|
17 bindkey '^[[F' end-of-line |
|
d12335ed421a
make the pos1 and end keys work
Dirk Olmes <dirk.olmes@exentra.de>
parents:
30
diff
changeset
|
18 |
| 11 | 19 # |
| 20 # aliases | |
| 21 # | |
| 22 alias bzip=pbzip2 | |
| 23 alias cvscheck='sh -c "cvs -n update 2>&1 | grep \?"' | |
| 24 alias cvsupdate='cvs -q -z3 update -dP | egrep -v "^\?.*\.d"' | |
| 25 alias df="df -h" | |
| 26 alias env="env | sort | $PAGER" | |
| 113 | 27 alias top="htop -C" |
| 11 | 28 |
| 29 # | |
| 30 # functions to be used directly from the command line | |
| 31 # | |
| 32 cvsrm() { rm "$@"; cvs remove "$@" } | |
| 113 | 33 kcs() { source $HOME/.keychain/$(hostname -f)-sh } |
| 34 |
