]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/pipenv/README.md
initial
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / pipenv / README.md
1 # Pipenv
2
3 ## Installation
4 In your `.zshrc` file, add `pipenv` to the plugins section
5
6 ```
7 plugins=(... pipenv ...)
8 ```
9
10 ## Features
11 This plugin provides some features to simplify the use of Pipenv while working on ZSH. 
12 - Adds completion for pipenv
13 - Auto activates and deactivates pipenv shell
14 - Adds short aliases for common pipenv commands
15   - `pch` is aliased to `pipenv check`
16   - `pcl` is aliased to `pipenv clean`
17   - `pgr` is aliased to `pipenv graph`
18   - `pi` is aliased to `pipenv install`
19   - `pidev` is aliased to `pipenv install --dev`
20   - `pl` is aliased to `pipenv lock`
21   - `po` is aliased to `pipenv open`
22   - `prun` is aliased to `pipenv run`
23   - `psh` is aliased to `pipenv shell`
24   - `psy` is aliased to `pipenv sync`
25   - `pu` is aliased to `pipenv uninstall`
26   - `pwh` is aliased to `pipenv --where`
27   - `pvenv` is aliased to `pipenv --venv`
28   - `ppy` is aliased to `pipenv --py`