summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/init-python.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/init-python.el b/lisp/init-python.el
index f3b8498..e4b5d9a 100644
--- a/lisp/init-python.el
+++ b/lisp/init-python.el
@@ -15,12 +15,12 @@
:hook (python-mode . mpolden/python-mode-buffer-local-variables)
:config
;; set prefered interpreter
- (setq python-shell-interpreter (cond ((executable-find "ipython") "ipython")
+ (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 "ipython")
+ (when (equal python-shell-interpreter "ipython3")
(setq python-shell-interpreter-args "-i --simple-prompt")))
(provide 'init-python)