shrc: move plugin sourcing to bottom of shrc

This commit is contained in:
PowerUser64 2024-09-16 11:52:50 -07:00
parent b6ca38a4b5
commit 123e9217a5

View file

@ -82,10 +82,6 @@ ${SKIP_FUNCTIONS:-false} || fnupdate
### Options >>> ### Options >>>
set -o vi set -o vi
# <<<
### "Plugins" >>>
${SKIP_SH_PLUGINS:-false} || careful_source "$SHELL_CONFIG_DIR/plugins"
# <<< # <<<
# <<< # <<<
@ -98,7 +94,9 @@ ${SKIP_UPDATES:-false} || careful_source "$SHELL_CONFIG_DIR/updates" \
"Error: failed to run update script" $LINENO -x "command" "Error: failed to run update script" $LINENO -x "command"
### <<< ### <<<
# terminal colorscheme ### "Plugins" >>>
careful_source "$SHELL_CONFIG_DIR/colors.sh" ${SKIP_SH_PLUGINS:-false} || careful_source "$SHELL_CONFIG_DIR/plugins"
# <<<
# vim:fdm=marker:fmr=>>>,<<<:et:ft=sh:sw=3:ts=3 # vim:fdm=marker:fmr=>>>,<<<:et:ft=sh:sw=3:ts=3