From 92a3fbebd35f535bb7cf041dfd4e2a00e786de86 Mon Sep 17 00:00:00 2001 From: Taylor Bockman Date: Wed, 22 Feb 2023 18:30:35 -0800 Subject: [PATCH] remove jedi from python-mode --- elisp/modes/python-mode-settings.el | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/elisp/modes/python-mode-settings.el b/elisp/modes/python-mode-settings.el index 67a2c41..7475166 100644 --- a/elisp/modes/python-mode-settings.el +++ b/elisp/modes/python-mode-settings.el @@ -19,20 +19,6 @@ (pyenv-mode-set pyenv-current-version) (message (concat "Setting virtualenv to " pyenv-current-version)))))))) -;; Right now this will require M-x jedi:install-server -;; to use it in a project. -;; TODO: Do the server installation automatically. -(use-package jedi - :ensure t - :hook (python-mode . jedi:setup) - :init - (setq jedi:complete-on-dot t)) - -(use-package company-jedi - :ensure t - :requires jedi - :hook (python-mode . company-jedi)) - ;; For Python enable Elpy. (use-package elpy :ensure t