Update README.md

This commit is contained in:
James Cherti
2026-02-18 14:28:10 -05:00
parent a681a78022
commit 61676c3f9e

View File

@@ -280,14 +280,17 @@ Native compilation enhances Emacs performance by converting Elisp code into nati
;; Ensure adding the following compile-angel code at the very beginning
;; of your `~/.emacs.d/post-init.el` file, before all other packages.
(use-package compile-angel
:demand t
:ensure t
:custom
;; Set `compile-angel-verbose` to nil to suppress output from compile-angel.
;; Drawback: The minibuffer will not display compile-angel's actions.
(compile-angel-verbose t)
:demand t
:config
;; The following disables compilation of packages during installation;
;; compile-angel will handle it.
(setq package-native-compile nil)
;; Set `compile-angel-verbose' to nil to disable compile-angel messages.
;; (When set to nil, compile-angel won't show which file is being compiled.)
(setq compile-angel-verbose t)
;; The following directive prevents compile-angel from compiling your init
;; files. If you choose to remove this push to `compile-angel-excluded-files'
;; and compile your pre/post-init files, ensure you understand the