Added checks for if-exists for cargo and linuxbrew
This commit is contained in:
parent
65ce95311e
commit
75673e974b
2 changed files with 7 additions and 2 deletions
5
.zshenv
5
.zshenv
|
@ -7,4 +7,7 @@
|
|||
: ${ZIM_HOME=${ZDOTDIR:-${HOME}}/.zim}
|
||||
# }}} End configuration added by Zim install
|
||||
|
||||
. "$HOME/.cargo/env"
|
||||
if [[ -d "$HOME/.cargo" ]]; then
|
||||
. "$HOME/.cargo/env"
|
||||
fi
|
||||
|
||||
|
|
4
.zshrc
4
.zshrc
|
@ -123,7 +123,9 @@ bindkey -M vicmd 'j' history-substring-search-down
|
|||
# }}} End configuration added by Zim install
|
||||
|
||||
# Homebrew
|
||||
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
|
||||
if [[ -d "/home/linuxbrew/.linuxbrew" ]]; then
|
||||
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
|
||||
fi
|
||||
|
||||
# Set Path:
|
||||
typeset -U PATH
|
||||
|
|
Loading…
Reference in a new issue