This file contains hidden or 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
### .bash_profile is invoked when you start a login shell (type login name and password) | |
### .bashrc is invoked for non-login interactive shell | |
### This allows to consolidate all the commands in the .bashrc | |
if [ -f $HOME/.bashrc ]; then | |
source $HOME/.bashrc | |
fi |
This file contains hidden or 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
export PATH=~/bin:$PATH | |
export PATH=/usr/local/bin:$PATH | |
export SSL_CERT_FILE=/usr/local/opt/curl-ca-bundle/share/ca-bundle.crt | |
export GIT_EDITOR="subl" | |
### Activate bash complition | |
if [ -f $(brew --prefix)/etc/bash_completion ]; then | |
. $(brew --prefix)/etc/bash_completion |