diff options
Diffstat (limited to 'lisp/ravi-init-org.el')
| -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 |
