diff options
Diffstat (limited to '.emacs.d')
-rw-r--r-- | .emacs.d/lisp/init-org.el | 8 |
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 |