diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2012-11-09 10:12:26 -0800 |
---|---|---|
committer | Jesse Morgan <morganjm@amazon.com> | 2012-11-09 10:12:26 -0800 |
commit | 8d6a7a116fe2511ee53309069a30ece768a05abe (patch) | |
tree | 632af6c23a8020ffce3c6175595b39d37f7c9080 /base/bashrc | |
parent | ef685f48262d2804f5d7e609178775dc55da4836 (diff) |
Merged in work base configs.
Diffstat (limited to 'base/bashrc')
-rw-r--r-- | base/bashrc | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/base/bashrc b/base/bashrc index 683e47e..204fcf0 100644 --- a/base/bashrc +++ b/base/bashrc @@ -105,5 +105,19 @@ fi # Personal Settings export EDITOR=vim +if [ -f ~/.shell_pathes ]; then + source ~/.shell_pathes +fi + # Host Specific Settings -source ~/.host-specific/bashrc +if [ -f ~/.host-specific/bashrc ]; then + source ~/.host-specific/bashrc +fi + +if [ -f ~/.host-specific/shell_pathes ]; then + source ~/.host-specific/shell_pathes +fi + +if [ -f ~/.host-specific/bash_aliases ]; then + source ~/.host-specific/bash_aliases +fi |