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 install and manage the `python-mode` package via `use-package` and have the following configuration in `:hooks` section: ```emacs-lisp :hook (python-mode . flycheck-mode) (python-mode . company-mode) [...] ``` If I combine...

moreinfo

Hi, I noticed a strange behavior of use-package with helm when using :bind : When I start Emacs, if no Helm command has been executed, if I use C-h v...

It seems that the `:magic` keyword to add to `magic-mode-alist` [only accepts regex](https://github.com/jwiegley/use-package/blob/2528afe6c507d2229400e57502c8966bc328ae89/use-package-core.el#L958), although a [match function would also be valid](https://www.gnu.org/software/emacs/manual/html_node/emacs/Choosing-Modes.html). It's not clear to me whether this was a...

enhancement

# Introduction This is a **bug report**, but I think this have to do with Emacs instead of `use-package`. However, I'm creating this issue just in case I'm wrong. #...

On Ubuntu 20.04.2 LTS, I use the following use-package configuration for [helm-bibtex](https://github.com/tmalsburg/helm-bibtex): ```emacs-lisp ;https://lucidmanager.org/productivity/emacs-bibtex-mode/ (setq bib-files-directory (directory-files-recursively (concat (getenv "HOME") "/texmf/bibtex/bib/local") "^[A-Za-z].+.bib$") ;pdf-files-directory (concat (getenv "HOME") "/pdf") ;bib-notes-directory (concat (getenv...

I am not sure whether use-package is the right place for this bug report. I wanted to install the "which-key" package, so I added this to my config: (use-package which-key...

bug
confirm

It would be great if one could specify the name of the package per OS. For example, given the following config: ```lisp (use-package counsel :delight :ensure-system-package ((fzf . fzf) (fd...

enhancement

there is a conflict between a configure and web-mode keymap, ```emacs-lisp (use-package awesome-pair :load-path "~/workspace/repo/awesome-pair/" :hook (prog-mode . awesome-pair-mode) :bind (:map awesome-pair-mode-map ("(" . awesome-pair-open-round) ("[" . awesome-pair-open-bracket) ("{" ....

Can I combine multiple hooks into one with use-package's `:hook` keyword, as shown below: ```emacs-lisp (use-package bla [...] :hook (((a-mode b-mode c-mode) . (d-mode e-mode)))) ``` Regards, HY

I would like to create a directory in my configuration called something like `~/.emacs.d/packages/` and I would like `use-package` to look there for packages before going for other sources. I...