Fix linting warnings in early-init/init.el

There should be no functional changes
This commit is contained in:
Laurens Miers 2025-05-26 10:59:38 +02:00
parent 6c24da4503
commit 2572e8c221
2 changed files with 19 additions and 6 deletions

View file

@ -1,9 +1,16 @@
;;; early-init.el --- Early Init -*- lexical-binding: t; -*-
;;; Commentary:
;; Early init configuration for Emacs Solo
;;
;;; Code:
;; Recommended by elpaca
(setq package-enable-at-startup nil) (setq package-enable-at-startup nil)
(provide 'early-init)
;; Local Variables: ;;; early-init.el ends here
;; no-byte-compile: t
;; no-native-compile: t
;; no-update-autoloads: t
;; End:

View file

@ -1,3 +1,9 @@
;;; init.el --- Init -*- lexical-binding: t; -*-
;;; Commentary:
;;; Load init files
;;; 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/