diff options
author | Mathias Bynens <mathias@qiwi.be> | 2015-10-18 09:46:16 -0400 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2015-10-18 09:46:16 -0400 |
commit | 6739605aded957ad1f0b4682d03033b76d372bba (patch) | |
tree | 25b70b8c513cff94741e05e81d30870026c9e8dc | |
parent | 2fe242baf2ca3c9de269120746429188a1e99ef8 (diff) | |
download | dotfiles-6739605aded957ad1f0b4682d03033b76d372bba.tar.gz dotfiles-6739605aded957ad1f0b4682d03033b76d372bba.tar.bz2 dotfiles-6739605aded957ad1f0b4682d03033b76d372bba.zip |
.exports: Update Node environment variables
Thanks to @alrra for the heads up in https://github.com/mathiasbynens/dotfiles/commit/9d30bd673c72ed1cadb2720fe4fb44a8ce915a2b#commitcomment-13835031.
-rw-r--r-- | .exports | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2,9 +2,11 @@ export EDITOR='vim'; # Enable persistent REPL history for `node`. -export NODE_REPL_HISTORY_FILE=~/.node_history; +export NODE_REPL_HISTORY=~/.node_history; # Allow 32³ entries; the default is 1000. export NODE_REPL_HISTORY_SIZE='32768'; +# Use sloppy mode by default, matching web browsers. +export NODE_REPL_MODE='sloppy'; # Increase Bash history size. Allow 32³ entries; the default is 500. export HISTSIZE='32768'; |