blob: eadc10476eb1acdf8f92b9c00e7c04ea07e3b6a0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
export GOPATH=$HOME/.local/share/go
export PATH=$PATH:$HOME/.local/bin:$GOPATH/bin:$HOME/.cargo/bin
|