13 lines
414 B
EmacsLisp
13 lines
414 B
EmacsLisp
;;; lang/org/contrib/jupyter.el -*- lexical-binding: t; -*-
|
|
;;;###if (featurep! +jupyter)
|
|
|
|
(use-package! jupyter
|
|
:defer t
|
|
:init
|
|
(after! ob-async
|
|
(pushnew! ob-async-no-async-languages-alist "jupyter-python" "jupyter-julia"))
|
|
|
|
(add-hook! '+org-babel-load-functions
|
|
(defun +org-babel-load-jupyter-h (lang)
|
|
(and (string-prefix-p "jupyter-" (symbol-name lang))
|
|
(require lang nil t)))))
|