Prevents errors when Docker Desktop is not installed. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
437 B
Bash
12 lines
437 B
Bash
|
|
export NVM_DIR="$HOME/.nvm"
|
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
|
|
|
[[ -f "$HOME/.docker/init-bash.sh" ]] && source "$HOME/.docker/init-bash.sh"
|
|
|
|
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
|
|
# export PATH="$PATH:$HOME/.rvm/bin"
|
|
|
|
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
|