diff --git a/README.md b/README.md index 1443a90..cca0f61 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ git clone https://github.com/jamescherti/minimal-emacs.d ~/.emacs.d - Delays garbage collection during startup to improve performance and resets it to a more reasonable value once Emacs has started. 2. **Native Compilation and Byte Compilation:** - - Configures `native-compile` settings + - Configures native compilation and byte compilation settings - Suppresses compiler warnings and errors during native compilation. 4. **UI Element Management:** diff --git a/init.el b/init.el index 91dcb84..a164fa5 100644 --- a/init.el +++ b/init.el @@ -14,7 +14,7 @@ ;;; Code: -;;; Load pre-init.el (after package/use-package and before init) +;;; Load pre-init.el (minimal-emacs-load-user-init "pre-init.el") ;;; package.el @@ -157,7 +157,7 @@ (setq visible-bell nil) (setq ring-bell-function #'ignore) -;;; Load user-pre-init.el +;;; Load post-init.el (minimal-emacs-load-user-init "post-init.el") (provide 'init)