Move localisation configuration into .config/locale.conf

This commit is contained in:
2026-02-02 12:52:17 +01:00
parent 6ea525eb83
commit 4b4641f6a9
2 changed files with 21 additions and 1 deletions

21
.config/locale.conf Normal file
View File

@@ -0,0 +1,21 @@
#!/usr/bin/env sh
# Announce preferred localisation configurations.
# Is usually sourced by /etc/profile.d/locale.sh
# Preferred language
LANG=en_GB.UTF-8
# Fallback languages, GNU extension
LANGUAGE=C.UTF-8:nl_NL.UTF-8
#
LC_COLLATE=C.UTF-8
LC_NUMERIC=nl_NL.UTF-8
LC_MONETARY=nl_NL.UTF-8
# GNU extension
LC_MEASUREMENT=
# Mustn't be set here, this change won't register.
LC_ALL=

View File

@@ -7,7 +7,6 @@
#
export PATH="$HOME/.local/bin:$PATH"
export LANG="en_GB.UTF-8"
# Use neovim for editor whenever available.
type nvim >/dev/null && {