From 28930df7da1ba2c79c604f1e4954d19dc05c178e Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 31 Jul 2013 17:37:51 +1200 Subject: Keep export calls separate from definitions --- sh/profile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'sh/profile') diff --git a/sh/profile b/sh/profile index 0a1e12a3..447a9645 100644 --- a/sh/profile +++ b/sh/profile @@ -1,9 +1,11 @@ # Set editor -export EDITOR='vi' -export VISUAL="$EDITOR" +EDITOR='vi' +VISUAL="$EDITOR" +export EDITOR VISUAL # Set pager -export PAGER='less' +PAGER='less' +export PAGER # Add ~/.local/bin to PATH if [ -d "$HOME/.local/bin" ]; then -- cgit v1.2.3