use-package
use-package copied to clipboard
A use-package declaration for simplifying your .emacs
#### Runtime Environment #### - MX Linux 18 - GNU Emacs 27.0.50 - Evil version 1.2.14 - [.emacs.d](https://github.com/mrbig033/dotfiles/tree/master/emacs/emacs_default) - [packages](https://github.com/mrbig033/dotfiles/blob/master/emacs/emacs_default/packs.el) - use-package: 20181119.2350 - pdf-tools: 20190129.1822 #### Issue #### With...
I looked for a convenient equivalent to `:commands` which creates the autoloaded function(s) as non-interactive (so that they don't pollute `M-x` completion from `counsel-M-x`, `amx`, etc.) but couldn't find one....
This keyword is proposed at #812. Special thanks for @andreyorst. NOTE: This PR may not completed. I don't familier with use-package codebase, I cannot find code that suppress require statemant...
I kinda like, that I don't have to type `-hook` every time in my whole configuration, but some packages use different names for hooks, and I'd like to set those...
```lisp (use-package flycheck :ensure t :init (setq-default flycheck-disabled-checkers '(emacs-lisp-checkdoc)) (setq-default flycheck-disabled-checkers (append flycheck-disabled-checkers '(javascript-jshint))) (setq flycheck-javascript-eslint-executable "eslint") (setq flycheck-python-flake8-executable "flake8") (global-flycheck-mode) :config (flycheck-add-mode 'javascript-eslint 'web-mode) ) ``` throw `the function...
I think this is a `use-package` problem, but I could be wrong. I'm having an issue where the first thing that I'm porting to use `use-package` is polluting global state...
Why this only works for the first keybinding ("gr")? ``` (use-package evil :init :bind (:map evil-normal-state-map ("gr" . my/sel-to-end) ("gl" . evil-end-of-visual-line)) (setq evil-want-integration t) ;; This is optional since...
```elisp (use-package boon :commands (boon-mode) :bind ((:map boon-command-map ("C-l" . recenter-top-bottom) ("r" . swiper) ("/" . undo-tree-undo) ("?" . undo-tree-redo) ("J" . join-line) ("TAB" . 'company-indent-or-complete-common) ("C" . 'boon-toggle-comment)) (:map...
The examples shown in [installation guide](https://github.com/jwiegley/use-package#package-installation) are all the case of single package installation with one use-package instruction. But I want to install a list of packages automatically with use-package...
:wave: Hi use-package folks! I'm running into an annoying warning with `evil-collection` when byte-compiling. The `evil-collection` readme suggests the following `use-package` incantation: ```elisp (use-package evil :ensure t :init (setq evil-want-integration...