use-package
use-package copied to clipboard
A use-package declaration for simplifying your .emacs
Hello! As in the title; I have forked [`general.el`](https://github.com/noctuid/general.el) to add a few autoloaded keywords of my own, by using the `:general` keyword use-package functions as a template. However, this...
### Goal To implement **:validate-custom** keyword (same as **:custom**, but backed by [validate.el](https://github.com/Malabarba/validate.el) validation). I seem to have an initial implementation. I could really use some feedback/guidance. Spot flaws? Potential...
Fixes #691 and fixes #672. The default way that use-package handles the `:hook` keyword when the function name is not explicitly given is to assume that it matches package name....
`define-key` allows adding descriptions to commands, like ``` (define-key map map '("Foo Bar Something" . foo-bar)) ``` is it possible to add the possibility to use such syntax in use-package?...
This is either a feature/question issue. I wonder if use-package can do the following. ```el (use-package origami :source 'celpa ; or melpa :init ...) ```
The following descriptions of use-package URL in the melpa repository in the github repo of this project are outdated: ``` $ egrep -inR 'melpa.milkbox.net' . ./README.md:5:[](http://melpa.milkbox.net/#/use-package) ./README.md:65:[MELPA](http://melpa.milkbox.net/) (recommended). ``` Currently,...
Hi, for a long time I put all my `(defun...` under the `:preface` macro. Never had an issue so far. Now I found there are `:functions` and `:defines` macros. Should...

I tend to think of `:defer 0.1` as effectively "load this package after 0.1s of idle time after init. I just learned that this isn't how it works--it actually considers...
Of late I have been making a push to accelerate startup by deferring as much default loading as possible. The pattern that has emerged is that I identify some event...