Enable more languages with org babel

This commit is contained in:
tecosaur 2020-01-10 02:02:54 +08:00
parent 3e8f913c5a
commit 03f5339087
1 changed files with 10 additions and 0 deletions

View File

@ -631,3 +631,13 @@ We just need to load ~ox-gfm~ for org-mode documents
(eval-after-load "org"
'(require 'ox-gfm nil t))
#+END_SRC
*** Babel
Babel allows for in-buffer evaluation of ~emacs-lisp~. It's nice to allow a few
more languages.
#+BEGIN_SRC emacs-lisp
(setq-default org-babel-load-languages '((emacs-lisp . t)
(shell . t)
(python . t)
(R . t)
(ledger . t)))
#+END_SRC