Update README.md
This commit is contained in:
22
README.md
22
README.md
@@ -276,27 +276,16 @@ Native compilation enhances Emacs performance by converting Elisp code into nati
|
|||||||
;; Native compilation enhances Emacs performance by converting Elisp code into
|
;; Native compilation enhances Emacs performance by converting Elisp code into
|
||||||
;; native machine code, resulting in faster execution and improved
|
;; native machine code, resulting in faster execution and improved
|
||||||
;; responsiveness.
|
;; responsiveness.
|
||||||
|
;;
|
||||||
;; Uncomment to disable Emacs JIT Native-compile to completely replace it with
|
|
||||||
;; compile-angel. This can prevents redundant or repetitive background
|
|
||||||
;; compilations:
|
|
||||||
;; (setq native-comp-jit-compilation nil)
|
|
||||||
;; (setq native-comp-deferred-compilation native-comp-jit-compilation)
|
|
||||||
|
|
||||||
;; 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
|
:demand t
|
||||||
:ensure t
|
:ensure t
|
||||||
|
:custom
|
||||||
:init
|
|
||||||
;; 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 suppress output from compile-angel.
|
;; Set `compile-angel-verbose` to nil to suppress output from compile-angel.
|
||||||
;; Drawback: The minibuffer will not display compile-angel's actions.
|
;; Drawback: The minibuffer will not display compile-angel's actions.
|
||||||
(setq compile-angel-verbose t)
|
(compile-angel-verbose t)
|
||||||
|
|
||||||
:config
|
:config
|
||||||
;; The following directive prevents compile-angel from compiling your init
|
;; The following directive prevents compile-angel from compiling your init
|
||||||
@@ -2213,6 +2202,11 @@ These modes are optional and can be added selectively to `~/.emacs.d/post-init.e
|
|||||||
(use-package jenkinsfile-mode
|
(use-package jenkinsfile-mode
|
||||||
:commands jenkinsfile-mode
|
:commands jenkinsfile-mode
|
||||||
:mode ("Jenkinsfile\\'" . jenkinsfile-mode))
|
:mode ("Jenkinsfile\\'" . jenkinsfile-mode))
|
||||||
|
|
||||||
|
;; Support for Haskell
|
||||||
|
;; (use-package haskell-mode
|
||||||
|
;; :commands haskell-mode
|
||||||
|
;; :mode ("\\.hs\\'" . haskell-mode))
|
||||||
```
|
```
|
||||||
|
|
||||||
## Customizations: Before init (File: pre-init.el)
|
## Customizations: Before init (File: pre-init.el)
|
||||||
|
|||||||
Reference in New Issue
Block a user