From 123e9217a5c93c106eda9ff3fc7168fdf7323029 Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Mon, 16 Sep 2024 11:52:50 -0700 Subject: [PATCH] shrc: move plugin sourcing to bottom of shrc --- .config/shell/shrc | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.config/shell/shrc b/.config/shell/shrc index ea751f2..fe57dc1 100644 --- a/.config/shell/shrc +++ b/.config/shell/shrc @@ -82,10 +82,6 @@ ${SKIP_FUNCTIONS:-false} || fnupdate ### Options >>> 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" ### <<< -# terminal colorscheme -careful_source "$SHELL_CONFIG_DIR/colors.sh" +### "Plugins" >>> +${SKIP_SH_PLUGINS:-false} || careful_source "$SHELL_CONFIG_DIR/plugins" + +# <<< # vim:fdm=marker:fmr=>>>,<<<:et:ft=sh:sw=3:ts=3