-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bash_profile
31 lines (21 loc) · 1.02 KB
/
.bash_profile
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
# Amazon Q pre block. Keep at the top of this file.
[[ -f "${HOME}/Library/Application Support/amazon-q/shell/bash_profile.pre.bash" ]] && builtin source "${HOME}/Library/Application Support/amazon-q/shell/bash_profile.pre.bash"
# Only run on macOS
if [[ "$OSTYPE" == "darwin"* ]]; then
# needed for brew
eval "$(/opt/homebrew/bin/brew shellenv)"
fi
if [ -r ~/.bashrc ]; then
source ~/.bashrc
fi
export XDG_CONFIG_HOME="$HOME"/.config
# Added by OrbStack: command-line tools and integration
source ~/.orbstack/shell/init.bash 2>/dev/null || :
. "$HOME/.cargo/env"
export BASH_SILENCE_DEPRECATION_WARNING=1
export PATH="/opt/homebrew/opt/curl/bin:$PATH"
### MANAGED BY RANCHER DESKTOP START (DO NOT EDIT)
export PATH="/Users/kolia/.rd/bin:$PATH"
### MANAGED BY RANCHER DESKTOP END (DO NOT EDIT)
# Amazon Q post block. Keep at the bottom of this file.
[[ -f "${HOME}/Library/Application Support/amazon-q/shell/bash_profile.post.bash" ]] && builtin source "${HOME}/Library/Application Support/amazon-q/shell/bash_profile.post.bash"