mirror of https://github.com/akelge/zsh
34 lines
721 B
Bash
34 lines
721 B
Bash
echo
|
|
print -P "$FX[bold]Kernel:$FX[reset] $KERNEL"
|
|
print -P "$FX[bold]Library:$FX[reset] $LIBRARY"
|
|
|
|
print -nP "\n$FX[bold]z plugin: "
|
|
if [ -e $LIBRARY/plugins/zsh-z/zsh-z.plugin.zsh ]; then
|
|
print -P "$FG[002]present$FX[reset]"
|
|
else
|
|
print -P "$FG[001]absent$FX[reset]"
|
|
fi
|
|
|
|
print -nP "$FX[bold]iTerm2 integration: "
|
|
if [ -e $HOME/.iterm2_shell_integration.zsh ]; then
|
|
print -P "$FG[002]present$FX[reset]"
|
|
else
|
|
print -P "$FG[001]absent$FX[reset]"
|
|
fi
|
|
|
|
echo
|
|
|
|
for plugin in thefuck pyenv kubectl aws; do
|
|
print -nP "$FX[bold]$plugin: "
|
|
if type $plugin > /dev/null; then
|
|
print -P "$FG[002]installed$FX[reset]"
|
|
else
|
|
print -P "$FG[001]absent$FX[reset]"
|
|
fi
|
|
done
|
|
|
|
|
|
echo
|
|
|
|
# vim: set ts=2 sw=2 tw=0 ft=sh :
|