summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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