summary refs log tree commit diff stats
path: root/emacs/.emacs.d/init.el
diff options
context:
space:
mode:
authorAlan Pearce2019-06-16 23:19:21 +0200
committerAlan Pearce2019-06-16 23:21:50 +0200
commit3d5c13ffae1f256952a1d6984ce287e8b707985e (patch)
treec40cded9e9a1559ae8e2a3f4ff4f3dfcfcb98ce6 /emacs/.emacs.d/init.el
parent27da3161affcf5066cfbb83d2a569f50c5fb8cd1 (diff)
downloadnixfiles-3d5c13ffae1f256952a1d6984ce287e8b707985e.tar.lz
nixfiles-3d5c13ffae1f256952a1d6984ce287e8b707985e.tar.zst
nixfiles-3d5c13ffae1f256952a1d6984ce287e8b707985e.zip
Emacs: rework config
I missed some things, but time will tell if I actually need them
Diffstat (limited to 'emacs/.emacs.d/init.el')
-rw-r--r--emacs/.emacs.d/init.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el
index 27ab85cc..48fc30a3 100644
--- a/emacs/.emacs.d/init.el
+++ b/emacs/.emacs.d/init.el
@@ -21,5 +21,6 @@
 (when (featurep 'auto-compile)
   (auto-compile-on-load-mode))
 
-(load-file (expand-file-name "main.el" user-emacs-directory))
+(let ((gc-cons-threshold most-positive-fixnum))
+  (load (expand-file-name "main.el" user-emacs-directory) :nomessage t))
 ;;; init ends here