From 2572e8c22199c5e173a020237f941290ddf5736a Mon Sep 17 00:00:00 2001 From: Laurens Miers Date: Mon, 26 May 2025 10:59:38 +0200 Subject: [PATCH] Fix linting warnings in early-init/init.el There should be no functional changes --- early-init.el | 19 +++++++++++++------ init.el | 6 ++++++ 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/early-init.el b/early-init.el index 0fe1b95..3a99e6d 100644 --- a/early-init.el +++ b/early-init.el @@ -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) +(provide 'early-init) -;; Local Variables: -;; no-byte-compile: t -;; no-native-compile: t -;; no-update-autoloads: t -;; End: - +;;; early-init.el ends here diff --git a/init.el b/init.el index 5b96eb9..a57c423 100644 --- a/init.el +++ b/init.el @@ -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 ;;; There are a LOT of articles/sites/... discussing this: ;;; https://bling.github.io/blog/2016/01/18/why-are-you-changing-gc-cons-threshold/