From c0fae305382335e961405f36dbcee5acd57fef0a Mon Sep 17 00:00:00 2001 From: Kyle McNally Date: Thu, 8 Oct 2015 08:58:05 -0400 Subject: .exports: Add missing `export` commands Closes #585. --- .exports | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.exports b/.exports index 436e113..763c0ba 100644 --- a/.exports +++ b/.exports @@ -2,9 +2,9 @@ export EDITOR='vim'; # Enable persistent REPL history for `node`. -NODE_REPL_HISTORY_FILE=~/.node_history; +export NODE_REPL_HISTORY_FILE=~/.node_history; # Allow 32³ entries; the default is 1000. -NODE_REPL_HISTORY_SIZE='32768'; +export NODE_REPL_HISTORY_SIZE='32768'; # Increase Bash history size. Allow 32³ entries; the default is 500. export HISTSIZE='32768'; -- cgit v1.2.3