Load default system locales

This commit is contained in:
Anthony Rose 2021-05-13 13:44:41 +01:00
parent 02202560d1
commit 63a01cd7fa

View file

@ -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