Skip to content

Commit

Permalink
Move around load order
Browse files Browse the repository at this point in the history
  • Loading branch information
b-ggs committed Jan 7, 2024
1 parent 476779c commit 2726b34
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions zsh/.zprofile
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,26 @@ else
fi


# cargo

if [[ -d "$HOME/.cargo" ]]; then
. "$HOME/.cargo/env"
echo "$(__pill_text OK 2) cargo"
else
echo "$(__pill_text WARN 3) cargo not found"
fi


# private zshrc

if [ -f "$HOME/.private.zshrc" ]; then
source "$HOME/.private.zshrc"
echo "$(__pill_text OK 2) private zshrc"
else
echo "$(__pill_text WARN 3) private zshrc not found"
fi


# keychain

if [[ -d "$HOME/.keychain" ]]; then
Expand All @@ -87,23 +107,3 @@ if [[ -d "$HOME/.keychain" ]]; then
else
echo "$(__pill_text WARN 3) keychain not found"
fi


# cargo

if [[ -d "$HOME/.cargo" ]]; then
. "$HOME/.cargo/env"
echo "$(__pill_text OK 2) cargo"
else
echo "$(__pill_text WARN 3) cargo not found"
fi


# private zshrc

if [ -f "$HOME/.private.zshrc" ]; then
source "$HOME/.private.zshrc"
echo "$(__pill_text OK 2) private zshrc"
else
echo "$(__pill_text WARN 3) private zshrc not found"
fi

0 comments on commit 2726b34

Please sign in to comment.