zsh: Use starship prompt

This commit is contained in:
saibotk 2022-02-23 00:59:55 +01:00
parent 50ef29b076
commit c7f63b1cfc
Signed by: saibotk
GPG key ID: 67585F0065E261D5

View file

@ -26,8 +26,14 @@ zstyle ':autocomplete:tab:*' widget-style menu-select
zstyle ':autocomplete:*' fzf-completion yes zstyle ':autocomplete:*' fzf-completion yes
zstyle ':autocomplete:*' min-input 2 zstyle ':autocomplete:*' min-input 2
# ZSH Theme # ZSH prompt
znap prompt ohmyzsh/ohmyzsh robbyrussell if _has starship;
then
znap eval starship 'starship init zsh --print-full-init'
else
echo "You should try installing the starship prompt 🚀"
znap prompt ohmyzsh/ohmyzsh robbyrussell
fi
# aliases # aliases
alias ll='ls -l' alias ll='ls -l'