From 4b4641f6a9473bed149a7261cd3f505dd6c17ba7 Mon Sep 17 00:00:00 2001 From: Quinn Date: Mon, 2 Feb 2026 12:52:17 +0100 Subject: [PATCH] Move localisation configuration into .config/locale.conf --- .config/locale.conf | 21 +++++++++++++++++++++ .profile | 1 - 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 .config/locale.conf diff --git a/.config/locale.conf b/.config/locale.conf new file mode 100644 index 0000000..38ef895 --- /dev/null +++ b/.config/locale.conf @@ -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= diff --git a/.profile b/.profile index 4641f09..98b29e0 100644 --- a/.profile +++ b/.profile @@ -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 && {