-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bash_paths
26 lines (21 loc) · 851 Bytes
/
.bash_paths
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
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi
if [ -d "/var/lib/flatpak/exports/bin/" ] ; then
PATH="/var/lib/flatpak/exports/bin/:$PATH"
fi
# Add zoxide with j command - autojump alternate
eval "$(zoxide init --cmd j bash)"
# rustup
if [ -f "$HOME/.cargo/env" ] ; then
source $HOME/.cargo/env
fi
# gcloud
# The next line updates PATH for the Google Cloud SDK.
if [ -f '$HOME/.local/google-cloud-sdk/path.bash.inc' ]; then . '$HOME/.local/google-cloud-sdk/path.bash.inc'; fi
# The next line enables shell command completion for gcloud.
if [ -f '$HOME/.local/google-cloud-sdk/completion.bash.inc' ]; then . '$HOME/.local/google-cloud-sdk/completion.bash.inc'; fi
# Jetbrains toolbox
if [ -d "$HOME/.local/share/JetBrains/Toolbox/scripts" ] ; then
PATH="$PATH:$HOME/.local/share/JetBrains/Toolbox/scripts"
fi