diff options
author | Kyle McNally <kyle@kmcnally.net> | 2015-10-08 08:58:05 -0400 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2015-10-10 18:13:19 +0200 |
commit | c0fae305382335e961405f36dbcee5acd57fef0a (patch) | |
tree | 7a2427a85ec0ae9ebc2be7eb434acf3a969e2414 | |
parent | afe5ae40f06d954bd200c89eb0e76726b2a010de (diff) | |
download | dotfiles-c0fae305382335e961405f36dbcee5acd57fef0a.tar.gz dotfiles-c0fae305382335e961405f36dbcee5acd57fef0a.tar.bz2 dotfiles-c0fae305382335e961405f36dbcee5acd57fef0a.zip |
.exports: Add missing `export` commands
Closes #585.
-rw-r--r-- | .exports | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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'; |