-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile
29 lines (19 loc) · 1.06 KB
/
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
export BASH_SILENCE_DEPRECATION_WARNING=1
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
nvm use lts/fermium
export PATH="$(brew --prefix)/opt/coreutils/libexec/gnubin:$PATH"
export PATH="$PATH:/usr/local/sbin"
export PATH=/usr/local/bin:$PATH
export PATH=$PATH:~/google-cloud-sdk/bin/
export PATH=$PATH:~/go/bin/
alias python=/usr/local/bin/python3
alias k=kubectl
export GOPATH=/Users/vegardok/repos/adventofcode/2022
# The next line updates PATH for the Google Cloud SDK.
if [ -f '/Users/vegardok/Downloads/google-cloud-sdk/path.bash.inc' ]; then . '/Users/vegardok/Downloads/google-cloud-sdk/path.bash.inc'; fi
# The next line enables shell command completion for gcloud.
if [ -f '/Users/vegardok/Downloads/google-cloud-sdk/completion.bash.inc' ]; then . '/Users/vegardok/Downloads/google-cloud-sdk/completion.bash.inc'; fi
. "$HOME/.cargo/env"
export PATH="/Users/vegardok/Library/Application Support/edgedb/bin:$PATH"