diff --git a/modules/compleat/init.zsh b/modules/compleat/init.zsh deleted file mode 100644 index 07f37da..0000000 --- a/modules/compleat/init.zsh +++ /dev/null @@ -1,23 +0,0 @@ -# -# Loads Compleat completions. -# -# Authors: -# Sorin Ionescu -# - -# Load dependencies. -omodload 'completion' - -if (( ${+commands[compleat]} )); then - compleat_setup="${commands[compleat]:h:h}/share/compleat-1.0/compleat_setup" - - if [[ -f "$compleat_setup" ]]; then - if autoloadable bashcompinit; then - autoload -Uz bashcompinit && bashcompinit - fi - - source "$compleat_setup" - unset compleat_setup - fi -fi -