From 13dd9613b315194f1302a1253172da9451a3e829 Mon Sep 17 00:00:00 2001 From: Eugene Kenny Date: Sun, 29 Jun 2014 12:12:47 +0100 Subject: [PATCH] Load .bashrc, even when starting a login shell This is necessary to make .bashrc load when opening a shell on OS X. --- bash_profile | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 bash_profile diff --git a/bash_profile b/bash_profile new file mode 100644 index 0000000..fbd31a6 --- /dev/null +++ b/bash_profile @@ -0,0 +1,2 @@ +# Load .bashrc, even when starting a login shell. +[[ -f ~/.bashrc ]] && source ~/.bashrc