about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--.emacs.d/lisp/init-org.el8
1 files changed, 8 insertions, 0 deletions
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