1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-05 21:59:43 +00:00
prezto/plugins/compleat/compleat.plugin.zsh

21 lines
643 B
Bash
Raw Normal View History

# ------------------------------------------------------------------------------
# FILE: compleat.plugin.zsh
# DESCRIPTION: oh-my-zsh plugin file.
# AUTHOR: Sorin Ionescu <sorin.ionescu@gmail.com>
# VERSION: 1.0.1
# ------------------------------------------------------------------------------
if (( ${+commands[compleat]} )); then
compleat_setup="${commands[compleat]:h:h}/share/compleat-1.0/compleat_setup"
if [[ -f "$compleat_setup" ]]; then
if ! bashcompinit >/dev/null 2>&1; then
autoload -Uz bashcompinit && bashcompinit
fi
source "$compleat_setup"
unset compleat_setup
fi
fi