diff --git a/.bashrc b/.bashrc index 6492a94..881ca9e 100644 --- a/.bashrc +++ b/.bashrc @@ -219,9 +219,9 @@ _init() { # ─< loop through and source the plugins >──────────────────────────────────────────────── for plugin in "${plugins[@]}"; do - if [ -f "$plugin" ]; then - echo_plugin "$plugin" - . "$plugin" + if [ -f "$bash_dir/$plugin" ]; then + echo_plugin "$bash_dir/$plugin" + . "$bash_dir/$plugin" fi done fi