use-package
use-package copied to clipboard
A use-package declaration for simplifying your .emacs
At the very least, include a URL to this page in the Info page so that people can read the whole README.
I don't want to hardcode path, so if get path from shell, this will not work. ```elisp (use-package svelte-mode :ensure t :ensure-system-package ((concat (string-trim (shell-command-to-string "npm root -g")) "/prettier-plugin-svelte") ....
If the following configuration is used, the `projectile-command-map` is loaded lazily. ~~~ elisp (use-package projectile :bind-keymap ("C-x p" . projectile-command-map)) ~~~ Unfortunately this interacts badly with the `which-key` view, which...
The README states that `use-package.el is no longer needed at runtime`. Due the lazily loaded keymaps, this does not apply to `use-package-bind-key.el`. Would it be possible to move `use-package-autoload-keymap` to...
I like my elisp to come from the Debian repository and this is the minimal init.el I came up with to support this: ```elisp (unless (package-installed-p 'use-package) (progn (message "WARNING:...
Hi! I moved the following declaration: > (setq scheme-program-name "scheme48") > (autoload 'run-scheme "cmuscheme48" "Run an inferior Scheme process." t) > into this use-package declaration: > (use-package cmuscheme48 > :init...
The declaration ":load-path ..." does not seem to like being followed by a declaration without keyword. In the steps to reproduce given below, is the observation made in step 2...
1) I see that `leaf` is in elpa.. If john is one of the emacs maintainers why `use-packages` is not in elpa too? 2) Are there any plans to move...
I would like the `:load-path` option to either - change so that it prepends to the `load-path` - or a new variant of the key named, say, `:load-path-prepended` - or...
The beginning of my `~/.emacs.d/init.el` file looks like this: ``` ;; MELPA (require 'package) (setq package-enable-at-startup nil) (setq package-check-signature nil) (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/")) (add-to-list 'package-archives '("elpy" . "https://jorgenschaefer.github.io/packages/"))...