my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
901 B

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