Update README.md

This commit is contained in:
James Cherti
2025-03-06 20:54:29 -05:00
parent 0a0487dc35
commit 05b23dc699

View File

@@ -147,7 +147,9 @@ These settings control the visibility of dialogs, context menus, toolbars, menu
Native compilation enhances Emacs performance by converting Elisp code into native machine code, resulting in faster execution and improved responsiveness. Native compilation enhances Emacs performance by converting Elisp code into native machine code, resulting in faster execution and improved responsiveness.
1. To check if native compilation is enabled, evaluate: 1. To check if native compilation is enabled, evaluate:
`(native-comp-available-p)` ```elisp
(native-comp-available-p)
```
(A non-nil result indicates that native compilation is active.) (A non-nil result indicates that native compilation is active.)
2. Ensure all libraries are byte-compiled and native-compiled using [compile-angel.el](https://github.com/jamescherti/compile-angel.el). To install compile-angel, add the following code at the very beginning of your `~/.emacs.d/post-init.el` file, before all other packages: 2. Ensure all libraries are byte-compiled and native-compiled using [compile-angel.el](https://github.com/jamescherti/compile-angel.el). To install compile-angel, add the following code at the very beginning of your `~/.emacs.d/post-init.el` file, before all other packages: