summaryrefslogtreecommitdiffstats
path: root/bash
diff options
context:
space:
mode:
authorAudric Schiltknecht <storm@chemicalstorm.org>2012-11-09 14:36:56 +0100
committerAudric Schiltknecht <storm@chemicalstorm.org>2012-11-09 14:36:56 +0100
commitc9546af5ee8a7134db990dbe29bef9bde71ff85f (patch)
treeb35bee42b298d9090a28dfc57e1924b5807e8539 /bash
parent87dbfcb88da0e337a450122a48d7eb23d8a7d56a (diff)
downloaddotfiles-c9546af5ee8a7134db990dbe29bef9bde71ff85f.tar.gz
dotfiles-c9546af5ee8a7134db990dbe29bef9bde71ff85f.tar.bz2
dotfiles-c9546af5ee8a7134db990dbe29bef9bde71ff85f.zip
Add source of local-machine bash definitions file.
Diffstat (limited to 'bash')
-rw-r--r--bash/.bashrc8
1 files changed, 8 insertions, 0 deletions
diff --git a/bash/.bashrc b/bash/.bashrc
index 39508c5..40e0b45 100644
--- a/bash/.bashrc
+++ b/bash/.bashrc
@@ -67,6 +67,14 @@ if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
+# Local definitions.
+# Since this file is shared among multiple machines, you may want to add
+# all definitions local to the machine in a separate file.
+# We use ~/.bash_local for this purpose.
+if [ -f ~/.bash_local ]; then
+ . ~/.bash_local
+fi
+
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profiles
# sources /etc/bash.bashrc).