From 0c18e02686cf000eae1dd4f7451c79ba8c0444aa Mon Sep 17 00:00:00 2001 From: Laurens Miers Date: Tue, 27 May 2025 12:55:07 +0200 Subject: [PATCH] fix: liniting errors on init.el --- init.el | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/init.el b/init.el index a57c423..3f13d33 100644 --- a/init.el +++ b/init.el @@ -4,6 +4,9 @@ ;;; Commentary: ;;; Load init files + +;;; Code: + ;;; Increase garbage collection threshold during init but leave it to the default value after ;;; There are a LOT of articles/sites/... discussing this: ;;; https://bling.github.io/blog/2016/01/18/why-are-you-changing-gc-cons-threshold/ @@ -19,3 +22,7 @@ (load custom-file :no-error-if-file-is-missing) ) + +(provide 'init) + +;;; init.el ends here