-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment
More file actions
34 lines (25 loc) · 754 Bytes
/
environment
File metadata and controls
34 lines (25 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# vim: filetype=sh
JAVA_HOME=/usr/lib/jvm/java
PATH=$PATH:$JAVA_HOME/bin/;
CLASSPATH=.:$JAVA_HOME/src.zip:$JAVA_HOME/lib/;
BOOTCLASSPATH=.:$JAVA_HOME/src.zip:$JAVA_HOME/lib/;
SOURCEPATH=.:$JAVA_HOME/src.zip;
PYENV_ROOT="$HOME/.pyenv"
PATH="$PYENV_ROOT/bin:$PATH"
# User specific environment and startup programs
PATH=$PATH:$HOME/.local/bin:$HOME/bin
export PATH
export CC="ccache gcc"
export CXX="ccache g++"
export WAFCACHE="$HOME/.cache/waf"
export XDEBUG_CONFIG=remote_handler=gdb;
if [ -f $HOME/.awskey ]; then
source $HOME/.awskey ;
fi
if [ -f $HOME/.mpdhost ]; then
source $HOME/.mpdhost;
fi
if command -v pyenv 1>/dev/null 2>&1; then
eval "$(pyenv init -)"
fi
export KUBECTL_EXTERNAL_DIFF="dyff between --omit-header --set-exit-code"