Found advantages of crafting emacs.d without use-package and implementation #385
Replies: 1 comment
-
We use
Bindings in one place is as simple as putting all of your bindings in a single file and then loading that file. If you are using Crafted Emacs, and have a |
Beta Was this translation helpful? Give feedback.
-
The current project is notable for the fact that it does not apply the use-package configurator, but strives assemble sequence of packages and settings from a clean
Elisp.
Despite the apparent complexity of configuration settings, this provides additional benefits.
Although now use-package is built into
emacs and it makes sense to explore it when managing several dozens of packages, it dictates us its own rules, which we will have to obey.
Having looked at some old school emacs.d files from emacs.nz, which were crafted without use-package, found some interesting points that I wanted would implement here. The kiss configuration is especially noteworthy..
with-eval-after-load
lets you defer execution of code until after a feature has been loaded. If this is combined with modularity of crafted-emacs.., is it possible to create such thing that only requested modules will be loaded 'on demand'?I recommend paying attention to this dotemacs.
Another fully functional configuration of a new school without use-package by Aimé Bertrand. Conspicuous ordering of custom variables and strict adherence to rules.
Beta Was this translation helpful? Give feedback.
All reactions