X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fcore%2Fvariables.sh;h=fa2f774b17a79c782c2458593d51309f8771242b;hb=68821c3475f388759fa9680e8dcf0572cf272ada;hp=31da35faf7c2413186721c9bf70a33067ac7ce42;hpb=f799e53be210af2e72697045c45274a120536813;p=feisty_meow.git diff --git a/scripts/core/variables.sh b/scripts/core/variables.sh index 31da35fa..fa2f774b 100644 --- a/scripts/core/variables.sh +++ b/scripts/core/variables.sh @@ -17,6 +17,9 @@ export PS1='\u@\h $ '; # sets the history length and max file size so we can get some long history around here. export HISTSIZE=1000000 export HISTFILESIZE=8000000 + +# make the TERM available to all sub-shells. +export TERM ############## @@ -207,6 +210,6 @@ for i in $FEISTY_MEOW_GENERATED/custom/*.sh; do if [ ! -z "$SHELL_DEBUG" ]; then echo "loading customization: $(basename $(dirname $i))/$(basename $i)" fi - source $i + source "$i" done