-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile
More file actions
72 lines (52 loc) · 2.35 KB
/
profile
File metadata and controls
72 lines (52 loc) · 2.35 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.
# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
#THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!!
export SDKMAN_DIR="/home/joelerll/.sdkman"
[[ -s "/home/joelerll/.sdkman/bin/sdkman-init.sh" ]] && source "/home/joelerll/.sdkman/bin/sdkman-init.sh"
export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting
export NVM_DIR="/home/joelerll/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
export PATH=$PATH":$HOME/.scripts"
export PATH=$PATH":$HOME/.local/bin"
alias dot='/usr/bin/git --git-dir=/home/joelerll/.cfg/ --work-tree=/home/joelerll'
#export DOCKER_HOST=tcp://127.0.0.1:4243
export SCALA_HOME=$HOME/extra/scala-2.11.8
export PATH=$PATH:$SCALA_HOME/bin
export PATH=/home/joelerll/extras/phantomjs-2.1.1-linux-x86_64/bin:$PATH
export PATH=/home/joelerll/.anaconda/anaconda_python2/bin:$PATH
export PATH=/home/joelerll/.anaconda/anaconda_python3/bin:$PATH
export PATH=/home/joelerll/extra/phantomjs-2.1.1-linux-x86_64/bin:$PATH
export GOROOT=$HOME/extra/go
export GOPATH=$HOME/.go_path
export PKG_CONFIG_PATH=$GOPATH/src/github.com/limetext/rubex
export PATH=$PATH:$GOROOT/bin
export GODEBUG=cgocheck=0
export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
export JAVA_HOME=/opt/java/jdk1.8.0_121/
export JRE_HOME=/opt/java/jdk1.8.0_121/jre
export PATH=$PATH:/opt/java/jdk1.8.0_121/bin:/opt/java/jdk1.8.0_121/jre/bin
# pywal
# (wal -r -t &)
export PATH="$HOME/.cargo/bin:$PATH"
export PATH="$HOME/.extras/mongodb/bin:$PATH"
export ANDROID_HOME=$HOME/.extras/android_studio
export PATH=$PATH:$ANDROID_HOME/tools
export JAVA_HOME=$(readlink -f /usr/bin/javac | sed "s:/bin/javac::")