Skip to content

Instantly share code, notes, and snippets.

View matteomelani's full-sized avatar

Matteo Melani matteomelani

View GitHub Profile
@matteomelani
matteomelani / .bashrc
Last active October 21, 2018 00:23
bashrc
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
@matteomelani
matteomelani / .bash_profile
Created October 21, 2018 00:21
Basic bash_profile file
### .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