use-package icon indicating copy to clipboard operation
use-package copied to clipboard

A use-package declaration for simplifying your .emacs

Results 170 use-package issues
Sort by recently updated
recently updated
newest added

I guess that because predicate `custom-face` calls function `customize-set-faces`, the configured values are stored by emacs in the file defined by variable `custom-file`, so the user ends up with the...

So I was noticing a problem every now and again while working on my emacs config where the custom faces I was setting were being reset somehow. I now know...

Hello, the code ``` (use-package org-bullets :ensure t :hook (org-mode . org-bullets-mode)) ``` works just fine. However, I expected ``` (use-package org-bullets :ensure t :hook org-mode) ``` fails with ```...

If I put in my init file: (custom-set-variables '(yankpad-descriptive-list-treatment 'abbrev)) (require 'yankpad) Yankpad load without error. When I want to set it with use-package: (use-package yankpad :ensure t :custom (yankpad-descriptive-list-treatment...

Travis stopped reassembling the site with documentation, for a very long time ;) > Since June 15th, 2021, the building on travis-ci.org is ceased. Please use travis-ci.com from now on.

Hi, I have the following sexp in my init.el ``` (use-package transient :ensure t :demand t) ``` evaluating it `C-x C-e` returns nil. Any ideas why, shouldn't it download and...

Sorry for asking via an Issue but I couldn't find another channel. But I am highly interested in feedback from the `use-package` maintainers and/or professionals. This is an [X-Post](https://github.com/company-mode/company-mode/discussions/1309). I...

I'm sure there's a better way to do this, but this is what I have in my config right now for bootstrapping use-package and a few other packages. It ensures...

enhancement
ensure

More a request then an issue. In my init file, I got a couple variables that get set buffer local but flycheck is complaining that `asignement to free variable`. Currently...

enhancement
docs

I've tried the following configuration and it really works: ```emacs-lisp (use-package emacs :config (defalias 'yes-or-no-p 'y-or-n-p)) ``` So, it seems that `emacs` can be used as a dummy [named feature](https://www.gnu.org/software/emacs/manual/html_node/elisp/Named-Features.html)...