]> src.twobees.de Git - dotfiles.git/blobdiff - stow/oh-my-zsh/.oh-my-zsh/plugins/compleat/compleat.plugin.zsh
rm oh-my-zsh
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / compleat / compleat.plugin.zsh
diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/compleat/compleat.plugin.zsh b/stow/oh-my-zsh/.oh-my-zsh/plugins/compleat/compleat.plugin.zsh
deleted file mode 100644 (file)
index 38f1b39..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-# ------------------------------------------------------------------------------
-#          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
-    if ! bashcompinit >/dev/null 2>&1; then
-      autoload -U bashcompinit
-      bashcompinit -i
-    fi
-
-    source "$setup" 
-  fi
-fi