Move to starship prompt by default

This commit is contained in:
ItsDrike 2025-11-07 15:31:19 +01:00
parent 0df2d8752c
commit b4c8003256
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
2 changed files with 68 additions and 1 deletions

View file

@ -5,10 +5,16 @@ source ~/.config/zsh/rc/history.zsh
source ~/.config/zsh/rc/opts.zsh
source ~/.config/zsh/rc/completion.zsh
source ~/.config/zsh/rc/keybinds.zsh
source ~/.config/zsh/rc/prompt.zsh
source ~/.config/zsh/rc/cmd_not_found.zsh
source ~/.config/zsh/rc/auto_cleanup.zsh
# Prefer starship if available
if command -v starship >/dev/null; then
eval "$(starship init zsh)"
else
source ~/.config/zsh/rc/prompt.zsh
fi
# Setup aliases
[ -f ~/.config/shell/aliases ] && source ~/.config/shell/aliases