about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--.emacs.d/init.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index cbf6206..66f5e1b 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -18,6 +18,10 @@
 
 (add-to-list 'load-path (expand-file-name "lisp" user-emacs-directory))
 
+(add-hook 'after-init-hook #'(lambda ()
+                               (setq gc-cons-threshold (* 100 1024 1024)
+                                     gc-cons-percentage 0.1)))
+
 (require 'init-packages)
 (require 'init-ui)
 (require 'init-compile)
@@ -49,7 +53,4 @@
 (require 'init-tramp)
 (require 'init-local nil t)
 
-(add-hook 'after-init-hook '(lambda ()
-                              (setq gc-cons-threshold (* 100 1024 1024)
-                                    gc-cons-percentage 0.1)))
 ;;; init.el ends here