From c98c789f32ac45ca231350b8bacca07692afe749 Mon Sep 17 00:00:00 2001 From: Jesus Date: Sun, 18 May 2025 20:09:31 -0500 Subject: Add autodep.sh --- hyperterm/hyperterm.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'hyperterm/hyperterm.sh') diff --git a/hyperterm/hyperterm.sh b/hyperterm/hyperterm.sh index 38b1cb6..f70458c 100644 --- a/hyperterm/hyperterm.sh +++ b/hyperterm/hyperterm.sh @@ -34,10 +34,11 @@ if [[ -f $HOME/.hyperterm/tools/aliases.sh ]]; then source "$HOME/.hyperterm/too # bash_functions #---------------- # [ core ] +if [[ -f $HOME/.hyperterm/core/languages.sh ]]; then source "$HOME/.hyperterm/core/languages.sh"; else true; fi +if [[ -f $HOME/.hyperterm/core/autodep.sh ]]; then source "$HOME/.hyperterm/core/autodep.sh"; else true; fi if [[ -f $HOME/.hyperterm/core/autocomplete.sh ]]; then source "$HOME/.hyperterm/core/autocomplete.sh"; else true; fi if [[ -f $HOME/.hyperterm/core/colors.sh ]]; then source "$HOME/.hyperterm/core/colors.sh"; else true; fi if [[ -f $HOME/.hyperterm/core/git.sh ]]; then source "$HOME/.hyperterm/core/git.sh"; else true; fi -if [[ -f $HOME/.hyperterm/core/languages.sh ]]; then source "$HOME/.hyperterm/core/languages.sh"; else true; fi if [[ -f $HOME/.hyperterm/core/status.sh ]]; then source "$HOME/.hyperterm/core/status.sh"; else true; fi if [[ -f $HOME/.hyperterm/core/update.sh ]]; then source "$HOME/.hyperterm/core/update.sh"; else true; fi -- cgit v1.2.3