Configure venv wrapper as an alternative to pyvenv.

- this i thought was useful because 'pyvenv is broken'
- pyvenv wasn't broken. see the next commit for what
- was actually broken. goddamnit.
master
jowj 5 years ago
parent b6fdbe1af6
commit d5e87f9157

@ -43,7 +43,7 @@
'(global-hl-line-mode t)
'(package-selected-packages
(quote
(flymake-python-pyflakes lsp-ui lsp-mode jedi znc yaml-mode which-key use-package twittering-mode try smex racer python-mode pylint py-autopep8 powershell pdf-tools outline-magic org2blog multiple-cursors magit helm flycheck-rust eyebrowse exec-path-from-shell emojify elpy ein doom-themes dockerfile-mode docker csharp-mode ansible anaconda-mode ace-window)))
(virtualenvwrapper flymake-python-pyflakes lsp-ui lsp-mode jedi znc yaml-mode which-key use-package twittering-mode try smex racer python-mode pylint py-autopep8 powershell pdf-tools outline-magic org2blog multiple-cursors magit helm flycheck-rust eyebrowse exec-path-from-shell emojify elpy ein doom-themes dockerfile-mode docker csharp-mode ansible anaconda-mode ace-window)))
'(znc-servers
(\`
(("bouncer.awful.club" 5000 t

@ -33,3 +33,9 @@
;; (use-package pyvenv
;; :ensure t)
(use-package virtualenvwrapper
:ensure t
:config
(venv-initialize-interactive-shells) ;; if you want interactive shell support
(venv-initialize-eshell) ;; if you want eshell support
(setq venv-location "~/.local/share/virtualenvs/"))

Loading…
Cancel
Save