diff --git a/roles/home-cli/files/bashrc b/roles/home-cli/files/bashrc index b092eda..17d282f 100644 --- a/roles/home-cli/files/bashrc +++ b/roles/home-cli/files/bashrc @@ -45,7 +45,14 @@ set -o noclobber # Locale and language. ## Clear the existing locale settings and set options I always want. export TIME_STYLE=long-iso # Used by GNU 'ls'. -export LANG=en_CA.UTF-8 +if [ -f /etc/locale.conf ] +then + . /etc/locale.conf +fi +if [ -f "$HOME/.config/locale.conf" ] +then + . "$HOME/.config/locale.conf" +fi # Other exports. export ANSIBLE_NOCOWS=1