aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_profile
diff options
context:
space:
mode:
Diffstat (limited to 'bash/bash_profile')
-rw-r--r--bash/bash_profile5
1 files changed, 5 insertions, 0 deletions
diff --git a/bash/bash_profile b/bash/bash_profile
index 0a5b4fd8..ceea5807 100644
--- a/bash/bash_profile
+++ b/bash/bash_profile
@@ -10,6 +10,11 @@ if [ -d "$HOME/bin" ]; then
PATH="$HOME/bin:$PATH"
fi
+# Add machine-specific locale file if it exists.
+if [ -e "$HOME/.bash_locale" ]; then
+ . "$HOME/.bash_locale"
+fi
+
# None of this UTF8 drawing characters nonsense.
export NCURSES_NO_UTF8_ACS=1