From d301b09bc7f8433a4d42ea89ff10dca440f5794e Mon Sep 17 00:00:00 2001 From: Martin Polden Date: Mon, 20 Mar 2023 18:06:39 +0100 Subject: python: remove unused interpreter customization --- lisp/init-python.el | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'lisp/init-python.el') diff --git a/lisp/init-python.el b/lisp/init-python.el index ffcaa2c..278be3e 100644 --- a/lisp/init-python.el +++ b/lisp/init-python.el @@ -15,16 +15,7 @@ (use-package python :mode ("\\.py\\'" . python-mode) - :hook (python-mode . mpolden/python-mode-buffer-local-variables) - :config - ;; set prefered interpreter - (setq python-shell-interpreter (cond ((executable-find "ipython3") "ipython3") - ((executable-find "python3") "python3") - t "python")) - ;; ipython needs --simple-prompt for emacs compatibility - ;; https://emacs.stackexchange.com/a/24572 - (when (equal python-shell-interpreter "ipython3") - (setq python-shell-interpreter-args "-i --simple-prompt"))) + :hook (python-mode . mpolden/python-mode-buffer-local-variables)) (provide 'init-python) -- cgit v1.2.3