aboutsummaryrefslogtreecommitdiff
path: root/dot_config/sh/locale
diff options
context:
space:
mode:
authorRyan Kavanagh <rak@rak.ac>2023-12-26 15:20:39 -0500
committerRyan Kavanagh <rak@rak.ac>2023-12-26 15:20:39 -0500
commit69d20d225670c15f6186e2e45db48a6b97de6e20 (patch)
treea3df14822d4cbb58f837080a576aefb8861aef30 /dot_config/sh/locale
parentdrop afs symlinks (diff)
Update locale config
Diffstat (limited to 'dot_config/sh/locale')
-rw-r--r--dot_config/sh/locale10
1 files changed, 0 insertions, 10 deletions
diff --git a/dot_config/sh/locale b/dot_config/sh/locale
deleted file mode 100644
index f9dda6c..0000000
--- a/dot_config/sh/locale
+++ /dev/null
@@ -1,10 +0,0 @@
-if ! export LANG=$(locale -a | grep -E -i "en_CA.UTF-?8"); then
- if ! export LANG=$(locale -a | grep -E -i "C.UTF-?8"); then
- export LANG=C
- fi
-fi
-
-export LC_TIME="en_GB.UTF-8"
-export LC_COLLATE=C # force strict lexicographic sorting
-
-# vim: set ft=sh: