company-jedi
company-jedi copied to clipboard
How in the world you setup this thing
Here's my config
(use-package company
:ensure t
:config
(add-hook 'after-init-hook 'global-company-mode)
(setq company-idle-delay 0)
(setq company-minimum-prefix-length 3))
(use-package company-jedi
:ensure t
:config
(with-eval-after-load 'company
(add-hook 'python-mode-hook
(lambda ()
(add-to-list 'company-backends 'company-jedi))))
(add-hook 'python-mode-hook 'jedi:setup)
(setq jedi:complete-on-dot t))
What's wrong with it? Editing a python file I get no autocompletion and have this epc on 3 buffer appearing
I use pyvenv for my virtualenvs and miniconda.
I have jedi and epc installed on my miniconda base environment and I want this to be picked up by company-jedi.
Later if I activate some environment using pyvenv which for instance has matplotlib, I want company-jedi to give me autocompletion for that package while using jedi and epc installed on my miniconda base environment?