Auto Update

This commit is contained in:
matt1432 2023-02-01 01:12:30 -05:00
parent c1c31018ac
commit df00b36dad

View file

@ -2,6 +2,12 @@
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=5000
HISTFILESIZE=10000
shopt -s histappend
export PROMPT_COMMAND="history -a; history -c; history -r; $PROMPT_COMMAND"
# If not running interactively, don't do anything
case $- in
*i*) ;;
@ -75,3 +81,4 @@ fi
if [ -f ~/git/dotfiles/.colors ] ; then
. ~/git/dotfiles/.colors
fi