aboutsummaryrefslogtreecommitdiff
path: root/.oh-my-zsh/plugins/pyenv
diff options
context:
space:
mode:
authorMarvin Borner2020-03-16 23:33:42 +0100
committerMarvin Borner2020-03-16 23:33:42 +0100
commit0e9ddbb0bf0cd34500155ea4b03de2e2a38d8ab2 (patch)
tree719da1c7fe5dabb872fe9ff1582c39b55ccd488e /.oh-my-zsh/plugins/pyenv
parente5d38956336ab1be954bdbd12808c5f98f8bd925 (diff)
Well I'm using Arch again
Diffstat (limited to '.oh-my-zsh/plugins/pyenv')
-rw-r--r--.oh-my-zsh/plugins/pyenv/pyenv.plugin.zsh41
1 files changed, 0 insertions, 41 deletions
diff --git a/.oh-my-zsh/plugins/pyenv/pyenv.plugin.zsh b/.oh-my-zsh/plugins/pyenv/pyenv.plugin.zsh
deleted file mode 100644
index dbc7da4..0000000
--- a/.oh-my-zsh/plugins/pyenv/pyenv.plugin.zsh
+++ /dev/null
@@ -1,41 +0,0 @@
-# This plugin loads pyenv into the current shell and provides prompt info via
-# the 'pyenv_prompt_info' function. Also loads pyenv-virtualenv if available.
-
-FOUND_PYENV=$+commands[pyenv]
-
-if [[ $FOUND_PYENV -ne 1 ]]; then
- pyenvdirs=("$HOME/.pyenv" "/usr/local/pyenv" "/opt/pyenv")
- for dir in $pyenvdirs; do
- if [[ -d $dir/bin ]]; then
- export PATH="$PATH:$dir/bin"
- FOUND_PYENV=1
- break
- fi
- done
-fi
-
-if [[ $FOUND_PYENV -ne 1 ]]; then
- if (( $+commands[brew] )) && dir=$(brew --prefix pyenv 2>/dev/null); then
- if [[ -d $dir/bin ]]; then
- export PATH="$PATH:$dir/bin"
- FOUND_PYENV=1
- fi
- fi
-fi
-
-if [[ $FOUND_PYENV -eq 1 ]]; then
- eval "$(pyenv init - zsh)"
- if (( $+commands[pyenv-virtualenv-init] )); then
- eval "$(pyenv virtualenv-init - zsh)"
- fi
- function pyenv_prompt_info() {
- echo "$(pyenv version-name)"
- }
-else
- # fallback to system python
- function pyenv_prompt_info() {
- echo "system: $(python -V 2>&1 | cut -f 2 -d ' ')"
- }
-fi
-
-unset FOUND_PYENV dir