blob: 8c5d9135e0064a6367e3f72599d54a7d0defaf3c (
plain)
1
2
3
4
5
6
7
8
|
# ignore oh-my-zsh theme
unset ZSH_THEME
if (( $+commands[starship] )); then
eval "$(starship init zsh)"
else
echo '[oh-my-zsh] starship not found, please install it from https://starship.rs'
fi
|