The minimal-emacs.d repository offers a starter kit with improved Emacs defaults and optimized startup, designed to serve as a robust foundation for y

Search code, repositories, users, issues, pull requests...

submited by
Style Pass
2024-08-12 19:00:07

The minimal-emacs.d repository offers a starter kit with improved Emacs defaults and optimized startup, designed to serve as a robust foundation for your vanilla Emacs configuration and enhance your overall Emacs experience.

The author is using minimal-emacs.d as his early-init.el and init.el. He is using 152 packages and his Emacs configuration starts in 0.44 seconds:

(The optimizations in minimal-emacs.d significantly contribute to speeding up Emacs startup. Additional factors include deferring package loading when not necessary on startup by using :defer t with use-package, and byte-compiling and native-compiling all .el files in advance using elispcomp. The author also regularly uses M-x list-timers and M-x describe-mode for each file type to ensure only essential modes and timers are active, which helps optimize Emacs' performance.)

To keep your Emacs configuration up to date, you can pull the latest changes from the repository. Run the following command in your terminal:

Leave a Comment