You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
342 B

[[ -r ~/.bashrc ]] && . ~/.bashrc
echo ".bashrc loaded"
# Store private information (exports, keys, etc) in .bash_private.
[[ -r ~/.bash_private ]] && . ~/.bash_private
echo ".bash_private loaded"
export CC=$(which clang)
export CXX=$(which clang++)
if which pyenv-virtualenv-init > /dev/null; then eval "$(pyenv virtualenv-init -)"; fi