mirror of
https://github.com/kremalicious/dotfiles.git
synced 2024-11-21 17:27:13 +01:00
18 lines
431 B
Bash
18 lines
431 B
Bash
#!/usr/bin/env bash
|
|
|
|
# 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
|
|
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
|
|
export PIP_DOWNLOAD_CACHE=$HOME/.pip/cache
|