summaryrefslogtreecommitdiffstats
path: root/.bash_profile
diff options
context:
space:
mode:
Diffstat (limited to '.bash_profile')
-rw-r--r--.bash_profile12
1 files changed, 7 insertions, 5 deletions
diff --git a/.bash_profile b/.bash_profile
index 0fa8f19..4829594 100644
--- a/.bash_profile
+++ b/.bash_profile
@@ -99,11 +99,6 @@ if [ -d $HOME/.nvm ]; then
source $(brew --prefix nvm)/nvm.sh
fi
-# ==== JAVA config
-if command -v java 1>/dev/null 2>&1; then
- export PATH="/opt/homebrew/opt/openjdk/bin:$PATH"
-fi
-
# ==== MISC config
if command -v thefuck 1>/dev/null 2>&1; then
# allow fuck to be alias of thefuck
@@ -129,3 +124,10 @@ fi
# ==== MISC CowSay
fortune | cowsay | lolcat
+
+# ==== Work config ===========================================================
+# ==== JAVA config
+if command -v java 1>/dev/null 2>&1; then
+ export PATH="/opt/homebrew/opt/openjdk@11/bin:$PATH"
+ export PATH="/opt/homebrew/opt/gradle@6/bin:$PATH"
+fi