From d29d586e787fda0c8c3c57131361374c3e05a864 Mon Sep 17 00:00:00 2001 From: Zoran Hristov Date: Thu, 2 Jun 2022 11:27:35 +0200 Subject: [PATCH] Fish shell proper initialization Fish shell initialization command for config file was not correct. I have added the proper syntax --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index f7b4244..6ed0fef 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,9 @@ From inside that directory you can: **Fish shell note**: Add this to your `~/.config/fish/config.fish` ```sh + if which pyenv-virtualenv-init > /dev/null + eval "$(pyenv virtualenv-init -)" + end status --is-interactive; and pyenv virtualenv-init - | source ```