annotate zshrc-cassiopeia @ 49:156167445780

remove unused cvs aliases, add ex-eclipse alias
author Dirk Olmes <dirk@xanthippe.ping.de>
date Fri, 04 Apr 2014 06:05:44 +0200
parents 2206bf6b1157
children 71da2af2ecd7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
33
2e9ab483d4bd rename the zshrc that holds the keybindings, use it for xanthippe, too
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 30
diff changeset
7 . $HOME/.zsh-env/zshrc-bindkey
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
8
25
a51240a0cd47 set the exentra workspace env var which helps generating linked projects
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 24
diff changeset
9 export EXENTRA_WORKSPACE=/home/dirk/Eclipse/Workspaces/Exentra/trunk
41
2206bf6b1157 add environment for citrix receiver
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 40
diff changeset
10 export ICAROOT="/opt/ICAClient/linuxx86"
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
11 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
12 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
13 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
14 export PGUSER=postgres
0
8b245298349a zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
15
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 # aliases
8b245298349a zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
18 #
38
05c566aa9510 remove invalid ANT_HOME variable, add an alias for ant pointing to the local Eclipse install
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 37
diff changeset
19 alias ant="/opt/eclipse-4.3/plugins/org.apache.ant_1.8.4.v201303080030/bin/ant"
40
ddcdea95e130 cassiopeia uses lbzip2 instead of pbzip2
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 38
diff changeset
20 alias bzip=lbzip2
0
8b245298349a zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
21 alias df="df -h"
8b245298349a zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
22 alias env="env | sort | $PAGER"
49
156167445780 remove unused cvs aliases, add ex-eclipse alias
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 41
diff changeset
23 alias ex-eclipse="/home/dirk/Projects/Exentra/RPI/trunk/utils/ex-eclipse"
24
7160269ef6a4 alias for launching nedit
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 23
diff changeset
24 alias ne=neditc
0
8b245298349a zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
25 alias top=htop
8b245298349a zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
26
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 # functions to be used directly from the command line
8b245298349a zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
29 #
8b245298349a zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
30 ed() { kate -u "$@" > /dev/null 2>&1 & }