summaryrefslogtreecommitdiff
path: root/init.org
diff options
context:
space:
mode:
authorrekado <rekado@elephly.net>2016-11-25 10:50:51 +0100
committerrekado <rekado@elephly.net>2016-11-25 10:50:51 +0100
commitcbb789c00a7cbb0578c20c1a34b3815477e33072 (patch)
treefb500f177eec6a071a874cff42804e4632c91cb6 /init.org
parent3c4b1cd7e2894eae37386aa611db81f28b095c58 (diff)
Add babel config.
Diffstat (limited to 'init.org')
-rw-r--r--init.org8
1 files changed, 8 insertions, 0 deletions
diff --git a/init.org b/init.org
index 4f0250b..967113c 100644
--- a/init.org
+++ b/init.org
@@ -416,6 +416,14 @@ For exporting org documents to PDF I use =lualatex= instead of the default =pdfl
"lualatex -interaction nonstopmode -output-directory %o %f"))
#+END_SRC
+Org mode is an excellent environment for literate programming through Babel. Here I configure a couple of common languages to be used with Babel.
+
+#+BEGIN_SRC elisp
+(require 'ob-sh)
+(require 'ob-scheme)
+(require 'ob-R)
+#+END_SRC
+
All of this should be loaded lazily.
#+BEGIN_SRC elisp :noweb-ref org-mode-lazy