diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc
index 2135389..869880c 100644
--- a/.config/zsh/.zshrc
+++ b/.config/zsh/.zshrc
@@ -117,4 +117,3 @@ bindkey '^[[1;5D' backward-word
 PLUGINS_HOME="${XDG_DATA_HOME:-$HOME/.local/share}/zsh/plugins"
 [ -f "$PLUGINS_HOME/fzf/key-bindings.zsh" ]                                         && source "$PLUGINS_HOME/fzf/key-bindings.zsh"
 [ -f "$PLUGINS_HOME/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh" ] && source "$PLUGINS_HOME/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh"
-[ -f "$PLUGINS_HOME/autopyenv/autopyenv.plugin.zsh" ]                               && source "$PLUGINS_HOME/autopyenv/autopyenv.plugin.zsh"
diff --git a/.local/share/zsh/plugins/autopyenv/autopyenv.plugin.zsh b/.local/share/zsh/plugins/autopyenv/autopyenv.plugin.zsh
deleted file mode 100644
index 2564739..0000000
--- a/.local/share/zsh/plugins/autopyenv/autopyenv.plugin.zsh
+++ /dev/null
@@ -1,42 +0,0 @@
-PYENV_DIR="${PYENVS_HOME:-${XDG_DATA_HOME:-$HOME/.local/share}/virtualenv}"
-PS1_DEFAULT="$PS1"
-PS1_PRE="${PYENV_PROMPT:- %F{yellow\}%F{reset\} }"
-function chpwd_activate(){
-  [[ "$(pwd)" == "/" ]] && return 0
-  for pydir in $(ls $PYENV_DIR); do
-    if [[ "$(pwd|sed -e s@/@_@g|cut -c2-)" =~ "^${pydir}$" ]] || [[ "r-$(pwd|sed -e s@/@_@g|cut -c2-)" =~ "^${pydir}(_.+)?$" ]]; then
-      if [ "x$VIRTUAL_ENV" != "x$PYENV_DIR/$pydir" ]; then
-        export PS1="$PS1_PRE$PS1_DEFAULT"
-        export VIRTUAL_ENV_DISABLE_PROMPT=1
-        source "$PYENV_DIR/$pydir/bin/activate"
-        unset VIRTUAL_ENV_DISABLE_PROMPT 
-      fi
-      return
-    fi
-  done
-  if [ "x$VIRTUAL_ENV" != "x" ]; then
-    export PS1="$PS1_DEFAULT"
-    deactivate
-  fi
-}
-
-function venv(){
-  [[ "$(pwd)" == "/" ]] && echo "Cannot create venv at root" && return 1
-  [[ "$(pwd)" != "/" ]] && envdir=$(pwd|sed -e s@/@_@g|cut -c2-)
-  [[ "$1" == "-r" ]] && envdir="r-$envdir" # create a venv that will be activated for all subdirectories as well
-  if [ ! -e "$PYENV_DIR/${envdir}" ]; then
-    echo "Creating python venv for ${envdir}.."
-    mkdir "$PYENV_DIR" -p
-    python3 -m venv "$PYENV_DIR/${envdir}"
-    echo "Activating virtual env ${envdir}"
-    export VIRTUAL_ENV_DISABLE_PROMPT=1
-    # source "$PYENV_DIR/${envdir}/bin/activate" && [[ ! $PS1 =~ "^$PS1_NEW" ]] && export PS1="$PS1_PRE$PS1_DEFAULT"
-    source "$PYENV_DIR/${envdir}/bin/activate" && export PS1="$PS1_PRE$PS1_DEFAULT"
-    unset VIRTUAL_ENV_DISABLE_PROMPT 
-  else
-    echo "A venv for this path already exists"
-  fi
-}
-
-autoload -U add-zsh-hook
-add-zsh-hook chpwd chpwd_activate