summaryrefslogtreecommitdiffstats
path: root/lisp/init-python.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/init-python.el')
-rw-r--r--lisp/init-python.el11
1 files changed, 1 insertions, 10 deletions
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)