summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-02-11 18:12:16 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-02-11 18:12:16 -0500
commit293deaa5b441e6a14df1f4537c200187b955d745 (patch)
tree404f5adde26277264a30bb11797d19082b2f16e3
parente00712fddcf5301c54857bb2b5e3514b584e7058 (diff)
bash: don't export things that don't need to be
-rw-r--r--.config/bash/rc.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/.config/bash/rc.sh b/.config/bash/rc.sh
index 62cc8ec..2bf60bc 100644
--- a/.config/bash/rc.sh
+++ b/.config/bash/rc.sh
@@ -13,10 +13,10 @@ shopt -s checkhash
################################################################################
# History settings
-export HISTCONTROL=ignoredups
-export HISTFILE=${XDG_CACHE_HOME}/bash/history
-export HISTTIMEFORMAT='[%Y-%m-%d %H:%M] '
-export HISTSIZE=5000
+HISTCONTROL=ignoredups
+HISTFILE=${XDG_CACHE_HOME}/bash/history
+HISTTIMEFORMAT='[%Y-%m-%d %H:%M] '
+HISTSIZE=5000
shopt -s histappend # append to the history file, don't overwrite it
mkdir -p "${HISTFILE%/*}"