Update file dot_bashrc

This commit is contained in:
Brian Zalewski 2023-02-04 08:26:20 +00:00
parent 9dfb728764
commit 915ce78117

View file

@ -1,12 +1,6 @@
#!/usr/bin/env bash
# shellcheck disable=SC1090,SC1091
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
# Prefer US English
export LANG="en_US"
if [[ "$(hostname)" != *'-minimal' ]]; then
@ -23,6 +17,12 @@ if [ -f "$HOME/.config/shell/profile.sh" ]; then
. "$HOME/.config/shell/profile.sh"
fi
### Escape if shell not interactive
case $- in
*i*) ;;
*) return;;
esac
### Fig / LC_ALL
if [ "$BASH_SUPPORT" = 'true' ]; then
if [ -f "$HOME/.fig/shell/bashrc.pre.bash" ]; then