emacs.d

My emacs configuration, done in a literate programming fashion using org-mode

git clone git://git.shimmy1996.com/emacs.d.git
commit 379ba22074663f0a550470317a06b6ecdc9fd300
parent 062d7c2a83b0d1b3b88d76138c0fc96ee77a5a60
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Sat,  4 May 2019 13:20:20 -0400

Use ipython as default interpreter

Diffstat:
MREADME.org | 11++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/README.org b/README.org
@@ -1306,14 +1306,15 @@ By default =flycheck= only runs one available python checker. Use
     (add-hook 'flycheck-mode-hook #'flycheck-pycheckers-setup))
 #+END_SRC
 
-*** DISABLED Python Interpretor
-Use Jupyter console as default interpreter.
+*** Python Interpretor
+Use =ipython= as default interpreter and disable feature warning.
+
 #+BEGIN_SRC emacs-lisp
-  (setq python-shell-interpreter "jupyter"
-        python-shell-interpreter-args "console --simple-prompt"
+  (setq python-shell-interpreter "ipython"
+        python-shell-interpreter-args "-i --simple-prompt"
         python-shell-prompt-detect-failure-warning nil)
   (add-to-list 'python-shell-completion-native-disabled-interpreters
-               "jupyter")
+               "ipython")
 #+END_SRC
 
 ** Rust-mode