summaryrefslogtreecommitdiff
path: root/tw/home/files/emacs-init.el
diff options
context:
space:
mode:
Diffstat (limited to 'tw/home/files/emacs-init.el')
-rw-r--r--tw/home/files/emacs-init.el9
1 files changed, 8 insertions, 1 deletions
diff --git a/tw/home/files/emacs-init.el b/tw/home/files/emacs-init.el
index dbc66c45..30946a4f 100644
--- a/tw/home/files/emacs-init.el
+++ b/tw/home/files/emacs-init.el
@@ -344,7 +344,14 @@
;; Org-mode
(use-package org)
(use-package ob ; org-babel
- :after (org))
+ :after (org)
+ :custom
+ (org-confirm-babel-evaluate nil "Allow running code blocks without confirmation.")
+ (org-babel-load-languages
+ '((emacs-lisp . t)
+ (dot . t)
+ (python . t))
+ "Load bindings for more languages for use in #+begin_src blocks."))
(use-package outline
:commands (outline-mode outline-minor-mode)