-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.bash_profile
More file actions
42 lines (31 loc) · 1.48 KB
/
.bash_profile
File metadata and controls
42 lines (31 loc) · 1.48 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
# .bash_profile is executed only for login shell (ssh or terminal emulator)
# and it's executed first, from this one we source .bashrc
# So only put in this file things that should ONLY RUN if the shell is interactive
# for things that should be run for both interactive and non-interactive (most stuff) then put it in ~/.bashrc
test -e "${HOME}/.iterm2_shell_integration.bash" && source "${HOME}/.iterm2_shell_integration.bash"
. ~/.bashrc
if brew --prefix asdf >/dev/null 2>&1; then
ASDFSX=$(brew --prefix asdf)/libexec/asdf.sh
if [ -x "$ASDFSH" ]; then
. "$ASDFSH"
fi
fi
. "$HOME/.cargo/env"
# Add JBang to environment
alias j!=jbang
export PATH="$HOME/.jbang/bin:$PATH"
#THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!!
export SDKMAN_DIR="$HOME/.sdkman"
[[ -s "$HOME/.sdkman/bin/sdkman-init.sh" ]] && source "$HOME/.sdkman/bin/sdkman-init.sh"
# The next line updates PATH for the Google Cloud SDK.
if [ -f '/Users/ecerulm/.local/google-cloud-sdk/path.bash.inc' ]; then . '/Users/ecerulm/.local/google-cloud-sdk/path.bash.inc'; fi
# The next line enables shell command completion for gcloud.
if [ -f '/Users/ecerulm/.local/google-cloud-sdk/completion.bash.inc' ]; then . '/Users/ecerulm/.local/google-cloud-sdk/completion.bash.inc'; fi
# Added by LM Studio CLI (lms)
export PATH="$PATH:/Users/ecerulm/.lmstudio/bin"
# End of LM Studio CLI section
AGY_PATH="$HOME/.antigravity/antigravity/bin"
if [ -d "$AGY_PATH" ]; then
export PATH="$AGY_PATH:$PATH"
fi
# Added by Antigravity