use-package
use-package copied to clipboard
A use-package declaration for simplifying your .emacs
This comment is either not true, or the functionality is not working correctly: https://github.com/jwiegley/use-package/blob/d3ace722ea890f9e99054af4487eff65c4e36243/use-package-core.el#L255-L258 In spacemacs, a "post-config" config hook is only ever ran if there exists a use-package `:config`...
An idea for improving DSL: ``` :ensure-system-package (:pip docker-compose :go (godef . "go get github.com/rogpeppe/godef") :apt (ag . silversearcher-ag) emacs25) ```
Consider my `use-package` entry for AUCTeX: ```elisp (use-package tex-site :ensure auctex :after tex-mode :config ;; TeX. (use-package tex :custom (TeX-auto-save t) (TeX-byte-compile t) (TeX-clean-confirm nil) (TeX-complete-expert-commands t) (TeX-debug-bad-boxes t) (TeX-debug-warnings...
As I understand it, `:bind-keymap` is supposed to be `:bind` for keymaps; that is, an exact workalike. However, the `:map` keyword is not supported.
I have these lines near the top of my .emacs file: ``` (package-initialize) (eval-when-compile (require 'use-package)) (require 'use-package-ensure) (setq use-package-always-ensure t) (use-package diminish :demand t) ``` If I manually delete...
Hi, I am using the following configuration in projectile: ``` (use-package projectile :ensure t :init (setq projectile-completion-system 'ivy) :bind-keymap ("C-c C-p" . projectile-command-map) :config (projectile-mode 1)) ``` When I press...
I'm trying to use Emacs 29.3 on Windows 11. Some packages are installed and loaded without any issue on first run. But when opening Emacs a second time the packages...
Hello, I'm not sure if this is possible given the current implementation of `:bind-keymap`, but it would be really nice if prefix arguments were preserved during autoload. Currently if one...
When adding `julia-snail-mode` to the `julia-mode` hook, different forms of the use-package syntax that should have "equivalent" behavior are in fact different. (https://www.gnu.org/software/emacs/manual/html_mono/use-package.html#Hooks) This first form does what I would...
Right now there isn't documented an example of how to issue a `:ensure-system-package` directive where you can supply multiple packages in a list but one (all?) of them do not...