dotfiles/lib/prompt.sh

13 lines
297 B
Bash
Raw Normal View History

2021-12-08 09:38:24 -06:00
autoload -Uz compinit
compinit
if is-executable sheldon; then
eval "$(sheldon -q --config-file ~/.config/sheldon/plugins.toml source)"
fi
2021-12-08 09:38:24 -06:00
# TODO: make decent fall back shell
is-executable starship && eval "$(starship init zsh)"
2022-02-08 09:38:03 -06:00
is-executable zoxide && eval eval "$(zoxide init zsh --cmd cd)"