blob: 47fcad22c1cf27a1573217a3dc82e2e49e051cb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
;; Set up babel languages.
(org-babel-do-load-languages
'org-babel-load-languages
'((sh . t)
(python . t)
(R . t)
(emacs-lisp . t)
(latex . t)))
;; Don't ask for confirmation before running code.
(setq org-confirm-babel-evaluate nil)
(provide 'init-babel)
|