From 0cae13e4c167ed5844c69e7ca5855a4c29124141 Mon Sep 17 00:00:00 2001 From: crater2150 Date: Thu, 2 Mar 2023 16:11:04 +0100 Subject: [PATCH] pyenv: install plugins --- plugins/pyenv/pyenv.plugin.zsh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugins/pyenv/pyenv.plugin.zsh b/plugins/pyenv/pyenv.plugin.zsh index d79d4e6..c6f5dda 100644 --- a/plugins/pyenv/pyenv.plugin.zsh +++ b/plugins/pyenv/pyenv.plugin.zsh @@ -18,6 +18,11 @@ else pyenv() { echo -n "pyenv is not installed. Install now? [yn] "; read -q || return git clone https://github.com/pyenv/pyenv.git $PYENV_ROOT + git clone https://github.com/pyenv/pyenv-update.git $PYENV_ROOT/plugins/pyenv-update + git clone https://github.com/pyenv/pyenv-virtualenv.git $PYENV_ROOT/plugins/pyenv-virtualenv + git clone https://github.com/jawshooah/pyenv-default-packages.git $PYENV_ROOT/plugins/pyenv-default-packages + git clone https://github.com/fizista/pyenv-choice.git $PYENV_ROOT/plugins/pyenv-choice + echo ptpython > $PYENV_ROOT/default-packages _init_pyenv } fi