use-package
use-package copied to clipboard
A use-package declaration for simplifying your .emacs
I am have used emacs for three days. I am not sure if my issue is what I think it is, but I am not able to load a theme...
Hello, despite having a functional use-package, Flymake reports an error on the line: `(eval-when-compile (require 'use-package))` Error message mentions: `"Cannot open load file: No such file or directory, use-package"` Is...
Hi: I am wondering if there is a way to do something like defer with integer but for modes that load with hooks. The problem is that some "not urgent"...
Hello, I think i don't understand how the `:custom-face` keyword works. ## My goal For Org, i would like to add a face attribute (height) to the `org-level-1` face. ##...
Hi, Thanks for use-package, great extension! This is more of a question (or feature request) than 'issue', but can you pin specific versions or tags of packages? For instance can...
Hi: I want to use something like: ``` (defconst myregex "BLA") (use-package mymode :mode (myregex . mymode) ...) ``` But I don't find any documentation about how to do that...
Forgive me if this was intended, but this is something that bites me often, when I use `use-package` in Doom Emacs. I'll illustrate the issue with these two snippets: ```elisp...
Is :custom capable of setting minor-mode variables, or is it more limited than customization menu?
I noted that which-key doesn't seem to activate at all if I include the minor mode variable (which-key-mode) in `:custom`. If I call `which-key-mode` twice in succession, only now does...
OS: CentOS7 emacs version: 24.3.1 **Error Message** define-package: Invalid function: ("John Wiegley" . "[email protected]") **Contents of use-package-pkg.el** ``` (define-package "use-package" "20201110.2133" "A configuration macro for simplifying your .emacs" '((emacs "24.3")...
I have about 60+ packages need use :bind OR :bind-keymap to define own bindings. I want to centerlize all the key bindings in my own defined package, and dispatch these...