Created
January 15, 2019 15:31
-
-
Save shentonfreude/83ace38a16b0dbd8f47500922bf91b42 to your computer and use it in GitHub Desktop.
.bashrc/.bash_profile from Macbook Air "Vapor"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .bashrc: NON-login shells | |
# .bash_profile: login shells (like iTerm launches, $0 = "-bash") | |
echo "# \$0=$0" | |
# if [ argv[0][0] == "-" ] I THINK THIS IS WRONG | |
# then | |
# echo "# \$0=$0 Login Shell " | |
# else | |
# echo "# \$0=$0 Non-login shell: arvg[0][0]" $arvg[0][0] " argv=$argv" argv[0]=$argv[0]" | |
# fi | |
# Python/bin for pip, virtualenv, pipenv | |
PATH=/usr/local/bin:/Users/chris/Library/Python/2.7/bin:$PATH | |
# zlib | |
export LDFLAGS="-L/usr/local/opt/zlib/lib" | |
export CPPFLAGS="-I/usr/local/opt/zlib/include" | |
export PKG_CONFIG_PATH="/usr/local/opt/zlib/lib/pkgconfig" | |
PS1='★\u@\h:\W$ ' | |
# Load pyenv automatically by appending # the following to ~/.bash_profile: | |
eval "$(pyenv init -)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment