summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander.sulfrian@fu-berlin.de>2016-08-03 21:39:19 +0200
committerAlexander Sulfrian <alexander.sulfrian@fu-berlin.de>2016-08-03 21:39:19 +0200
commitf5c2c0af66080c22b1da9eea4e2cd963ff932c3e (patch)
tree9c186305e8a39a6bd37a57e8570b3d043c657db7
parent3ad980893d3b5bda52eeb97d54403f5a83ef465a (diff)
downloademacs-f5c2c0af66080c22b1da9eea4e2cd963ff932c3e.tar.gz
emacs-f5c2c0af66080c22b1da9eea4e2cd963ff932c3e.tar.xz
emacs-f5c2c0af66080c22b1da9eea4e2cd963ff932c3e.zip
init: Speed up the untangling
We only use the noweb-refs to split big parts of package configurations in more smaller parts, so we do not need very fancy features and the quick&dirty mode is sufficient.
-rw-r--r--init.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/init.el b/init.el
index b841c11..902642d 100644
--- a/init.el
+++ b/init.el
@@ -1,5 +1,5 @@
(let ((file-name-handler-alist nil))
(package-initialize nil)
- (setq package-enable-at-startup nil)
-
+ (setq package-enable-at-startup nil
+ org-babel-use-quick-and-dirty-noweb-expansion t)
(org-babel-load-file "~/.emacs.d/init.d/main.org"))