]> src.twobees.de Git - dotfiles.git/blobdiff - stow/oh-my-zsh/.oh-my-zsh/plugins/jenv/jenv.plugin.zsh
rm oh-my-zsh
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / jenv / jenv.plugin.zsh
diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/jenv/jenv.plugin.zsh b/stow/oh-my-zsh/.oh-my-zsh/plugins/jenv/jenv.plugin.zsh
deleted file mode 100644 (file)
index 2401026..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-jenvdirs=("$HOME/.jenv" "/usr/local/bin/jenv" "/usr/local/jenv" "/opt/jenv")
-
-FOUND_JENV=0
-for jenvdir in $jenvdirs; do
-    if [[ -d "${jenvdir}/bin" ]]; then
-        FOUND_JENV=1
-        break
-    fi
-done
-
-if [[ $FOUND_JENV -eq 0 ]]; then
-    if (( $+commands[brew] )) && jenvdir="$(brew --prefix jenv)"; then
-        [[ -d "${jenvdir}/bin" ]] && FOUND_JENV=1
-    fi
-fi
-
-if [[ $FOUND_JENV -eq 1 ]]; then
-    (( $+commands[jenv] )) || export PATH="${jenvdir}/bin:$PATH"
-    eval "$(jenv init - zsh)"
-
-    function jenv_prompt_info() {
-      local version="$(jenv version-name 2>/dev/null)"
-      echo "${version:gs/%/%%}"
-    }
-
-    if [[ -d "${jenvdir}/versions" ]]; then
-        export JENV_ROOT=$jenvdir
-    fi
-else
-    function jenv_prompt_info() {
-      local version="$(java -version 2>&1 | cut -d' ' -f2)"
-      echo "system: ${version:gs/%/%%}"
-    }
-fi
-
-unset jenvdir jenvdirs FOUND_JENV