From 0c2aaef9950aa856c9323ada248941cd38e16fa5 Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Mon, 20 May 2019 10:38:04 -0400 Subject: [PATCH] add org env to source blocks --- etc/conf.org | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/etc/conf.org b/etc/conf.org index 7d65f22..3447646 100644 --- a/etc/conf.org +++ b/etc/conf.org @@ -1100,7 +1100,9 @@ Enable shortcuts for embedding code in org text bodies. #+BEGIN_SRC emacs-lisp (setq org-src-window-setup 'current-window org-src-fontify-natively t - org-edit-src-content-indentation 0) + org-edit-src-content-indentation 0 + org-babel-load-languages '((emacs-lisp . t) + (org . t))) (add-to-list 'org-structure-template-alist '("el" "#+BEGIN_SRC emacs-lisp\n?\n#+END_SRC"))