diff options
author | Alexander Sulfrian <alexander.sulfrian@fu-berlin.de> | 2016-08-03 21:39:19 +0200 |
---|---|---|
committer | Alexander Sulfrian <alexander.sulfrian@fu-berlin.de> | 2016-08-03 21:39:19 +0200 |
commit | f5c2c0af66080c22b1da9eea4e2cd963ff932c3e (patch) | |
tree | 9c186305e8a39a6bd37a57e8570b3d043c657db7 | |
parent | 3ad980893d3b5bda52eeb97d54403f5a83ef465a (diff) | |
download | emacs-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.el | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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")) |