2011-05-05 22:41:05 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# FILE: compleat.plugin.zsh
|
|
|
|
# DESCRIPTION: oh-my-zsh plugin file.
|
|
|
|
# AUTHOR: Sorin Ionescu (sorin.ionescu@gmail.com)
|
|
|
|
# VERSION: 1.0.0
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
if (( ${+commands[compleat]} )); then
|
|
|
|
local prefix="${commands[compleat]:h:h}"
|
|
|
|
local setup="${prefix}/share/compleat-1.0/compleat_setup"
|
|
|
|
|
|
|
|
if [[ -f "$setup" ]]; then
|
|
|
|
source "$setup"
|
|
|
|
fi
|
2020-09-30 17:00:51 +00:00
|
|
|
|
|
|
|
unset prefix setup
|
2011-05-05 22:41:05 +00:00
|
|
|
fi
|