blob: 984e8a9807fc14c2ae73fac5322c0e06f34e9e0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#
# ~/.bash_profile
#
PATH=$PATH:$HOME/.cargo/bin
PATH=$PATH:$HOME/go/bin
PATH=$PATH:$HOME/.local/bin
export PATH="$PATH:$HOME/workspace/chromium_stuff/depot_tools"
export PATH
[[ -f ~/.bashrc ]] && . ~/.bashrc
source ~/.setup/.bash_profile.local
# opam configuration
test -r /home/benj/.opam/opam-init/init.sh && . /home/benj/.opam/opam-init/init.sh > /dev/null 2> /dev/null || true
|