aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_profile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2012-02-22 10:25:15 +1300
committerTom Ryder <tom@sanctum.geek.nz>2012-02-22 10:25:15 +1300
commit94ad9958e416c25dd5c75fbc26ba602711d2b0b4 (patch)
tree94c0a421bd09d5b8946639220fe70ed486e60334 /bash/bash_profile
parentRemoved locale definition for now. (diff)
downloaddotfiles-94ad9958e416c25dd5c75fbc26ba602711d2b0b4.tar.gz
dotfiles-94ad9958e416c25dd5c75fbc26ba602711d2b0b4.zip
Here's a more sensible solution.
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