Add pyenv-mode

This commit is contained in:
Jeremy Dormitzer 2020-02-13 21:03:58 -05:00
parent f8530621e1
commit cdf68a8f1a

View File

@ -2535,6 +2535,13 @@ Run black on the current buffer:
:hook ((python-mode . sphinx-doc-mode)))
#+END_SRC
And support pyenv (NOT pyvenv) to change Python versions:
#+BEGIN_SRC emacs-lisp
(use-package pyenv-mode
:defer t)
#+END_SRC
** Autoflake
[[https://pypi.org/project/autoflake/][Autoflake]] is a tool that removes unused imports and variables from Python code:
#+BEGIN_SRC emacs-lisp