mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2025-11-12 12:31:46 +00:00
Move to starship prompt by default
This commit is contained in:
parent
0df2d8752c
commit
b4c8003256
2 changed files with 68 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue