You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
638 B
21 lines
638 B
14 years ago
|
# ------------------------------------------------------------------------------
|
||
|
# FILE: compleat.plugin.zsh
|
||
|
# DESCRIPTION: oh-my-zsh plugin file.
|
||
14 years ago
|
# AUTHOR: Sorin Ionescu <sorin.ionescu@gmail.com>
|
||
13 years ago
|
# VERSION: 1.0.2
|
||
14 years ago
|
# ------------------------------------------------------------------------------
|
||
|
|
||
|
if (( ${+commands[compleat]} )); then
|
||
14 years ago
|
compleat_setup="${commands[compleat]:h:h}/share/compleat-1.0/compleat_setup"
|
||
14 years ago
|
|
||
14 years ago
|
if [[ -f "$compleat_setup" ]]; then
|
||
13 years ago
|
if autoloadable bashcompinit; then
|
||
14 years ago
|
autoload -Uz bashcompinit && bashcompinit
|
||
14 years ago
|
fi
|
||
|
|
||
14 years ago
|
source "$compleat_setup"
|
||
|
unset compleat_setup
|
||
14 years ago
|
fi
|
||
|
fi
|
||
14 years ago
|
|