use-package
use-package copied to clipboard
A use-package declaration for simplifying your .emacs
I've the following [binding-within-local-keymaps](https://github.com/jwiegley/use-package#binding-within-local-keymaps) configuration for company package: ```emacs-lisp (use-package company :bind (:map company-active-map ("" . company-search-candidates) ("" . company-search-abort) ("SPC" . company-complete-selection) ("" . company-abort) :map company-search-map ("" ....
Trying to install on emacs `24.3`, but when I load emacs with use-package installed as a package, I get the startup error `eval-buffer: Symbol's function definition is void: function-put`. I...
I like describe-personal-keybindings a lot. But it is an optimistic view of my bindings. It tells me what bindings are described in my init-file but does not tell me whether...
When I run `make` on a fresh clone of use-package, I get a bunch of warnings about use-package.texi: ``` Generating use-package.info use-package.texi:87: warning: menu entry name should not contain `:'...
How do I unbind or unset a key? e.g. in `evil` the `TAB` is bind to `evil-jump-next`. I wan't to unbind that before loading `org-mode` because in `org-mode` the `TAB`...
I want to know if the following two settings are equivalent. ```emacs-lisp (use-package company-lsp :commands company-lsp) ``` and ```emacs-lisp (use-package company-lsp) (require 'company-lsp) ``` Regards, HY
for example, the following :bind form is not correctly indented. ``` (use-package org :bind (:map org-mode-map ("C-c C-'" . org-edit-special) :map org-src-mode-map ("C-c C-'" . org-edit-src-exit))) ```
Compare ```elisp :bind (("x" . x) :map local-map ("y" . y))) ``` to ```elisp :bind (:map local-map ("y" . y))) ``` The inconsistent indentation happens when you only have local...
I cannot understand what's going on here:  I don't know a lot about macros, but maybe some kind of syntax descriptor or whatever provided by use-package is wrong. Or...
Say, I want to install a package A, which in itself dependent on other packages, B and C. In this case, how to install them all in one use-package command?...