diff options
| author | Ravi R Kiran <aine.marina@gmail.com> | 2021-04-25 19:00:26 (GMT) |
|---|---|---|
| committer | Ravi R Kiran <aine.marina@gmail.com> | 2021-04-25 19:00:26 (GMT) |
| commit | 893b1ca2b9e6dd54e09e28c59406d0996bbb950f (patch) | |
| tree | 24000e7672dcc5a30821bfd9bc482f01d9c09f68 | |
| parent | 03ef1714f617b41a54b7c59a9f6d895aabb0a18a (diff) | |
| download | dotemacs-893b1ca2b9e6dd54e09e28c59406d0996bbb950f.zip dotemacs-893b1ca2b9e6dd54e09e28c59406d0996bbb950f.tar.gz dotemacs-893b1ca2b9e6dd54e09e28c59406d0996bbb950f.tar.bz2 | |
Replace ob-ipython with jupyter
| -rw-r--r-- | lisp/ravi-init-org.el | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/lisp/ravi-init-org.el b/lisp/ravi-init-org.el index a55f593..9f557c5 100644 --- a/lisp/ravi-init-org.el +++ b/lisp/ravi-init-org.el @@ -24,6 +24,12 @@ ;;; Code: +;; This brings in emacs-zmq, which requires static libstdc++.a +(use-package jupyter + :commands (jupyter-run-server-repl + jupyter-run-repl + jupyter-server-list-kernels)) + (use-package org :ensure org-plus-contrib :mode ("\\.org\\'" . org-mode) @@ -75,17 +81,14 @@ (add-hook 'org-babel-after-execute-hook 'org-display-inline-images 'append) (org-babel-do-load-languages 'org-babel-load-languages - '((ipython . t) - (emacs-lisp . t))) - (use-package ob-ipython - :init - (progn - ) - :config - (progn - (add-to-list 'org-latex-minted-langs '(ipython "python")))) - ) - ) + '((python . t) + (shell . t) + (latex . t) + (ditaa . t) + (dot . t) + (plantuml . t) + (emacs-lisp . t) + (jupyter . t))))) ; jupyter must be last (use-package org-capture :defer t |
