summaryrefslogtreecommitdiffstatshomepage
path: root/bash/.bashrc
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-08-18 14:31:57 -0500
committerToby Vincent <tobyv13@gmail.com>2022-08-18 14:31:57 -0500
commitc6684b0e395db4fd17dfddb0b4d3f28a21b630f4 (patch)
treea57b2e0d1d774d7a6f5395d5c5621fb6c2660f68 /bash/.bashrc
parent2538494e96a814afd6e9e8b40a79d831b6bbaffc (diff)
refactor(bash): source zshenv directly from bash_profile
Diffstat (limited to 'bash/.bashrc')
-rw-r--r--bash/.bashrc2
1 files changed, 2 insertions, 0 deletions
diff --git a/bash/.bashrc b/bash/.bashrc
index 7d454d7..fa713b3 100644
--- a/bash/.bashrc
+++ b/bash/.bashrc
@@ -30,8 +30,10 @@ alias dcu="docker context use"
if [[ $- == *i* ]] && [ -d "$BASHCOMPDIR" ]; then
for f in "$BASHCOMPDIR"/*; do
+ # shellcheck disable=1090
source "$f"
done
fi
+# shellcheck disable=1090
command -v starship >/dev/null 2>&1 && source <(starship init bash)