From ccc974ca9bc76c13618c9b6a76f5c5e9b88c1aab Mon Sep 17 00:00:00 2001 From: David Morgan Date: Thu, 23 Jun 2022 08:12:19 +0100 Subject: [PATCH] Play with org babel --- .emacs.d/lisp/init-org.el | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.emacs.d/lisp/init-org.el b/.emacs.d/lisp/init-org.el index a5f0e24..365ce79 100644 --- a/.emacs.d/lisp/init-org.el +++ b/.emacs.d/lisp/init-org.el @@ -36,6 +36,11 @@ (define-org-wrap "verbatim" ?=) (define-org-wrap "code" ?~) (define-org-wrap "strike-through" ?+) + (org-babel-do-load-languages + 'org-babel-load-languages + '((shell . t) + (elasticsearch . t) + (sql . t))) :bind ("C-c l" . org-store-link) ("C-c a" . org-agenda) @@ -45,5 +50,8 @@ ;("C-c c" . org-capture) ) +(use-package ob-async + :ensure t) + (provide 'init-org) ;;; init-org.el ends here