aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKyle McNally <kyle@kmcnally.net>2015-10-08 08:58:05 -0400
committerMathias Bynens <mathias@qiwi.be>2015-10-10 18:13:19 +0200
commitc0fae305382335e961405f36dbcee5acd57fef0a (patch)
tree7a2427a85ec0ae9ebc2be7eb434acf3a969e2414
parentafe5ae40f06d954bd200c89eb0e76726b2a010de (diff)
downloaddotfiles-c0fae305382335e961405f36dbcee5acd57fef0a.tar.gz
dotfiles-c0fae305382335e961405f36dbcee5acd57fef0a.tar.bz2
dotfiles-c0fae305382335e961405f36dbcee5acd57fef0a.zip
.exports: Add missing `export` commands
Closes #585.
-rw-r--r--.exports4
1 files 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';