summaryrefslogtreecommitdiffstats
path: root/zsh/oh-my-zsh/plugins/autoenv
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
committerLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
commita62114c91f2070c8c8453d117f3d81dc113e41ff (patch)
treef266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/plugins/autoenv
parentaf120ab348f2e1a5a39dec035ed9dcf84189a64e (diff)
downloaddotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/autoenv')
-rw-r--r--zsh/oh-my-zsh/plugins/autoenv/README.md20
-rw-r--r--zsh/oh-my-zsh/plugins/autoenv/autoenv.plugin.zsh72
2 files changed, 0 insertions, 92 deletions
diff --git a/zsh/oh-my-zsh/plugins/autoenv/README.md b/zsh/oh-my-zsh/plugins/autoenv/README.md
deleted file mode 100644
index 5dfb5fb..0000000
--- a/zsh/oh-my-zsh/plugins/autoenv/README.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# Autoenv plugin
-
-This plugin loads the [Autoenv](https://github.com/inishchith/autoenv).
-
-To use it, add `autoenv` to the plugins array in your zshrc file:
-
-```zsh
-plugins=(... autoenv)
-```
-
-## Functions
-
-* `use_env()`: creates and/or activates a virtualenv. For use in `.env` files.
- See the source code for details.
-
-## Requirements
-
-In order to make this work, you will need to have the autoenv installed.
-
-More info on the usage and install at [the project's homepage](https://github.com/inishchith/autoenv).
diff --git a/zsh/oh-my-zsh/plugins/autoenv/autoenv.plugin.zsh b/zsh/oh-my-zsh/plugins/autoenv/autoenv.plugin.zsh
deleted file mode 100644
index 229a8a8..0000000
--- a/zsh/oh-my-zsh/plugins/autoenv/autoenv.plugin.zsh
+++ /dev/null
@@ -1,72 +0,0 @@
-# Initialization: activate autoenv or report its absence
-() {
-local d autoenv_dir install_locations
-if ! type autoenv_init >/dev/null; then
- # Check if activate.sh is in $PATH
- if (( $+commands[activate.sh] )); then
- autoenv_dir="${commands[activate.sh]:h}"
- fi
-
- # Locate autoenv installation
- if [[ -z $autoenv_dir ]]; then
- install_locations=(
- ~/.autoenv
- ~/.local/bin
- /usr/local/opt/autoenv
- /opt/homebrew/opt/autoenv
- /usr/local/bin
- /usr/share/autoenv-git
- ~/Library/Python/bin
- )
- for d ( $install_locations ); do
- if [[ -e $d/activate.sh ]]; then
- autoenv_dir=$d
- break
- fi
- done
- fi
-
- # Look for Homebrew path as a last resort
- if [[ -z "$autoenv_dir" ]] && (( $+commands[brew] )); then
- d=$(brew --prefix)/opt/autoenv
- if [[ -e $d/activate.sh ]]; then
- autoenv_dir=$d
- fi
- fi
-
- # Complain if autoenv is not installed
- if [[ -z $autoenv_dir ]]; then
- cat <<END >&2
--------- AUTOENV ---------
-Could not locate autoenv installation.
-Please check if autoenv is correctly installed.
-In the meantime the autoenv plugin is DISABLED.
---------------------------
-END
- return 1
- fi
- # Load autoenv
- source $autoenv_dir/activate.sh
-fi
-}
-[[ $? != 0 ]] && return $?
-
-# The use_env call below is a reusable command to activate/create a new Python
-# virtualenv, requiring only a single declarative line of code in your .env files.
-# It only performs an action if the requested virtualenv is not the current one.
-
-use_env() {
- local venv
- venv="$1"
- if [[ "${VIRTUAL_ENV:t}" != "$venv" ]]; then
- if workon | grep -q "$venv"; then
- workon "$venv"
- else
- echo -n "Create virtualenv $venv now? (Yn) "
- read answer
- if [[ "$answer" == "Y" ]]; then
- mkvirtualenv "$venv"
- fi
- fi
- fi
-}