From cb99cbcc8ebb221d02e0860fa48127b887701472 Mon Sep 17 00:00:00 2001 From: Ivan Pozdeev Date: Sun, 9 Jun 2024 00:01:04 +0300 Subject: [PATCH] README: Emphasize the main design idea of the plugins --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 78b13516..ff9682a9 100644 --- a/README.md +++ b/README.md @@ -580,10 +580,13 @@ uninstall from the system. ## Pyenv plugins -Pyenv provides a simple, flexible and maintainable way to extend and customize its functionality with plugins -- +Pyenv provides a simple way to extend and customize its functionality with plugins -- as simple as creating a plugin directory and dropping a shell script on a certain subpath of it with whatever extra logic you need to be run at certain moments. +The main idea is that most things that you can put under `$PYENV_ROOT/` you can also put +under `$PYENV_ROOT/plugins/your_plugin_name/`. + See [_Plugins_ on the wiki](https://github.com/pyenv/pyenv/wiki/Plugins) on how to install and use plugins as well as a catalog of some useful existing plugins for common needs.