Load default system locales
This commit is contained in:
parent
02202560d1
commit
63a01cd7fa
1 changed files with 8 additions and 1 deletions
|
@ -45,7 +45,14 @@ set -o noclobber
|
||||||
# Locale and language.
|
# Locale and language.
|
||||||
## Clear the existing locale settings and set options I always want.
|
## Clear the existing locale settings and set options I always want.
|
||||||
export TIME_STYLE=long-iso # Used by GNU 'ls'.
|
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.
|
# Other exports.
|
||||||
export ANSIBLE_NOCOWS=1
|
export ANSIBLE_NOCOWS=1
|
||||||
|
|
Loading…
Reference in a new issue