Update README.md
This commit is contained in:
15
README.md
15
README.md
@@ -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
|
;; Ensure adding the following compile-angel code at the very beginning
|
||||||
;; of your `~/.emacs.d/post-init.el` file, before all other packages.
|
;; of your `~/.emacs.d/post-init.el` file, before all other packages.
|
||||||
(use-package compile-angel
|
(use-package compile-angel
|
||||||
:demand t
|
|
||||||
:ensure t
|
:ensure t
|
||||||
:custom
|
:demand t
|
||||||
;; 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)
|
|
||||||
|
|
||||||
:config
|
: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
|
;; The following directive prevents compile-angel from compiling your init
|
||||||
;; files. If you choose to remove this push to `compile-angel-excluded-files'
|
;; files. If you choose to remove this push to `compile-angel-excluded-files'
|
||||||
;; and compile your pre/post-init files, ensure you understand the
|
;; and compile your pre/post-init files, ensure you understand the
|
||||||
|
|||||||
Reference in New Issue
Block a user