From 2108d018f378f2728ab43ba2dceba3c889869bdf Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 14 Aug 2022 16:24:40 +1200 Subject: Switch back to separate assignment/export --- sh/profile | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) (limited to 'sh/profile') diff --git a/sh/profile b/sh/profile index 61122076..5b835458 100644 --- a/sh/profile +++ b/sh/profile @@ -1,23 +1,29 @@ # Use lynx as our terminal browser -export BROWSER=lynx +BROWSER=lynx +export BROWSER # Use ed as our line editor and vi as our visual editor -export EDITOR=ed -export VISUAL=vi +EDITOR=ed +VISUAL=vi +export EDITOR VISUAL # Set the POSIX interactive startup file to ~/.shinit -export ENV=$HOME/.shinit +ENV=$HOME/.shinit +export ENV # Use NZ English, but bytewise sorting -export LANG=en_NZ.UTF-8 -export LANGUAGE=en_NZ:en -export LC_COLLATE=C +LANG=en_NZ.UTF-8 +LANGUAGE=en_NZ:en +LC_COLLATE=C +export LANG LANGUAGE LC_COLLATE # Use less as my pager -export PAGER=less +PAGER=less +export PAGER # Assume I'm at home unless something overrides it -export TZ=Pacific/Auckland +TZ=Pacific/Auckland +export TZ # Source all scripts in ~/.profile.d; many of them will be modifying $PATH, so # we'll get that sorted out first -- cgit v1.2.3