2016-10-14 21:59:34 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2014-11-03 17:40:13 +01:00
|
|
|
# Set architecture flags
|
|
|
|
export ARCHFLAGS="-arch x86_64"
|
|
|
|
|
|
|
|
# Prefer US English and use UTF-8
|
|
|
|
export LC_ALL="en_US.UTF-8"
|
|
|
|
export LANG="en_US"
|
|
|
|
|
|
|
|
# LSCOLORS
|
|
|
|
export CLICOLOR=1
|
2014-11-11 15:49:28 +01:00
|
|
|
export LSCOLORS=gxfxcxdxbxegedabagacad
|
|
|
|
|
|
|
|
# pip should only run if there is a virtualenv currently activated
|
|
|
|
export PIP_REQUIRE_VIRTUALENV=true
|
|
|
|
# cache pip-installed packages to avoid re-downloading
|
2016-10-14 21:59:34 +02:00
|
|
|
export PIP_DOWNLOAD_CACHE=$HOME/.pip/cache
|
2017-06-12 01:04:18 +02:00
|
|
|
|
|
|
|
# go
|
|
|
|
export GOPATH=$HOME/.go
|
|
|
|
export GOROOT=/usr/local/opt/go/libexec
|