-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bash_paths
36 lines (28 loc) · 1.03 KB
/
.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
27
28
29
30
31
32
33
34
35
36
export PATH=~/.npm-global/bin:$PATH
export GOPATH=$HOME/.golang
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
# asdf and asdf completions
if [ -d "/opt/asdf-vm" ] ; then
. /opt/asdf-vm/asdf.sh
# . /opt/asdf-vm/completions/asdf.bash
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