fix: liniting errors on init.el

This commit is contained in:
Laurens Miers 2025-05-27 12:55:07 +02:00
parent 6a57cbfd1f
commit 0c18e02686

View file

@ -4,6 +4,9 @@
;;; Commentary: ;;; Commentary:
;;; Load init files ;;; Load init files
;;; Code:
;;; Increase garbage collection threshold during init but leave it to the default value after ;;; Increase garbage collection threshold during init but leave it to the default value after
;;; There are a LOT of articles/sites/... discussing this: ;;; There are a LOT of articles/sites/... discussing this:
;;; https://bling.github.io/blog/2016/01/18/why-are-you-changing-gc-cons-threshold/ ;;; 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) (load custom-file :no-error-if-file-is-missing)
) )
(provide 'init)
;;; init.el ends here