From 68a5d5ed054b28ee9c186ef7b28c51a892926dd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Alvari=C3=B1o?= Date: Mon, 18 Apr 2022 09:08:32 +0200 Subject: [PATCH] Gets rid of linter warnings for early-init.el --- early-init.el | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/early-init.el b/early-init.el index 26028d4..10d2e75 100644 --- a/early-init.el +++ b/early-init.el @@ -1,3 +1,19 @@ +;;; early-init.el --- Summary +;; +;;; Commentary: +;; +;; Emacs27 introduces early-init.el, which is run before init.el, +;; before package and UI initialization happens. +;; +;;; Code: +;; ;; Disable package.el in favor of straight.el (setq package-enable-at-startup nil) + +;; Disable cl-functions warnings (setq byte-compile-warnings '(cl-functions)) + + +(provide 'early-init) +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; early-init.el ends here