Mercurial > hg > zsh-env
annotate zshrc-cassiopeia @ 30:c58e6033e2cb
get rid of the hostx alias, all machines should have the proper bind-tools installed
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Wed, 12 Sep 2012 03:46:14 +0200 |
parents | 7ca2aaae6c4b |
children | 2e9ab483d4bd 9096be7d1c24 |
rev | line source |
---|---|
0
8b245298349a
zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
1 # |
8b245298349a
zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
2 # zshrc for cassiopeia |
8b245298349a
zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
3 # |
8b245298349a
zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
4 |
8b245298349a
zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
5 . $HOME/.zsh-env/zshrc-jdk |
8b245298349a
zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
6 . $HOME/.zsh-env/zshrc-maven |
26
7ca2aaae6c4b
add keybinding for some keys
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
25
diff
changeset
|
7 . $HOME/.zsh-env/zshrc-konsole |
23
7593aefb6142
disable GNUstep for now ... we don't use it
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
2
diff
changeset
|
8 #. /usr/local/GNUstep/share/GNUstep/Makefiles/GNUstep.sh |
2
4c75712619f3
source the GNUstep env if it's available and set some more env vars
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
0
diff
changeset
|
9 |
4c75712619f3
source the GNUstep env if it's available and set some more env vars
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
0
diff
changeset
|
10 export ANT_HOME=/usr/share/ant-bin |
25
a51240a0cd47
set the exentra workspace env var which helps generating linked projects
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
24
diff
changeset
|
11 export EXENTRA_WORKSPACE=/home/dirk/Eclipse/Workspaces/Exentra/trunk |
2
4c75712619f3
source the GNUstep env if it's available and set some more env vars
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
0
diff
changeset
|
12 export MULE_TEST_OPTS="-Dmule.verbose=false" |
4c75712619f3
source the GNUstep env if it's available and set some more env vars
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
0
diff
changeset
|
13 export MULE_TEST_TIMEOUTSECS=9999 |
4c75712619f3
source the GNUstep env if it's available and set some more env vars
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
0
diff
changeset
|
14 export PATH="$HOME/bin:${PATH}" |
4c75712619f3
source the GNUstep env if it's available and set some more env vars
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
0
diff
changeset
|
15 export PGUSER=postgres |
0
8b245298349a
zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
16 |
8b245298349a
zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
17 # |
8b245298349a
zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
18 # aliases |
8b245298349a
zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
19 # |
8b245298349a
zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
20 alias bzip=pbzip2 |
8b245298349a
zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
21 alias cvscheck='sh -c "cvs -n update 2>&1 | grep \?"' |
8b245298349a
zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
22 alias cvsupdate='cvs -q -z3 update -dP | egrep -v "^\?.*\.d"' |
8b245298349a
zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
23 alias df="df -h" |
8b245298349a
zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
24 alias env="env | sort | $PAGER" |
24
7160269ef6a4
alias for launching nedit
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
23
diff
changeset
|
25 alias ne=neditc |
0
8b245298349a
zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
26 alias top=htop |
8b245298349a
zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
27 |
8b245298349a
zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
28 # |
8b245298349a
zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
29 # functions to be used directly from the command line |
8b245298349a
zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
30 # |
8b245298349a
zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
31 cvsrm() { rm "$@"; cvs remove "$@" } |
8b245298349a
zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
32 ed() { kate -u "$@" > /dev/null 2>&1 & } |