aboutsummaryrefslogtreecommitdiff
path: root/dot_config/environment.d/03_locale.tmpl
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--dot_config/environment.d/03_locale.tmpl10
1 files changed, 0 insertions, 10 deletions
diff --git a/dot_config/environment.d/03_locale.tmpl b/dot_config/environment.d/03_locale.tmpl
deleted file mode 100644
index 7d73fb3..0000000
--- a/dot_config/environment.d/03_locale.tmpl
+++ /dev/null
@@ -1,10 +0,0 @@
-if ! export LANG=$(locale -a | grep -E -i "{{ .locale_base }}\.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: