use-package
use-package copied to clipboard
A use-package declaration for simplifying your .emacs
**Version:** commit 42db6b, 20191126.2034, from MELPA **Emacs version:** GNU Emacs 27.0.90 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.13, cairo version 1.16.0) of 2020-03-05 With `:custom` I can use a list like...
So, I have the following code in my init: ``` (use-package undo-tree :defines undo-tree-visualizer-selection-mode :commands undo-tree-mode :ensure t :config (global-undo-tree-mode t)) ``` I still get these at byte compilation time...
I have the following command: `(use-package pdf-tools :ensure-system-package (libpng-dev zlib1g-dev libpoppler-glib-dev libpoppler-private-dev imagemagick) )` Every time I start emacs it asks me to install all system packages mentioned above. "(use-package-ensure-system-package-exists?...
Hi, Forgive me if this is covered elsewhere, but I couldn't find any reference to it in the docs or old issues. Would it be possible to add `compile-defun` support...
I don't currently use `use-package` myself, but I was playing with it a while ago and wanted certain `use-package` clauses to degrade gracefully if the packages were uninstallable on the...
`describe-personal-keybindings` shows the Key Name and Command fields. However if I bind a key to a lambda, it just says "#". In addition, can it show the docstring of that...
I would like to use a mode only under certain conditions for a filetype: ```elisp (use-package ess-site :mode (("\\.R\\" . R-mode) (unless ess-enable-julia ("\\.R\\" . ess-julia-mode)))) ```
I'm switching from `el-get` to a combination of `use-package` and `straight`. However, I'm seeing very odd behaviour for certain buffers. For example this is my php-mode: ``` (use-package php-mode :straight...
There maybe a way to do this already but. I use the global ``` emacs-lisp (setq use-package-always-ensure t) ``` But I have some packages that I have forked and cloned...
For example: ```elisp (unbind-key ([remap xref-find-definitions]) go-mode-map) ``` Return errors: ```elisp Debugger entered--Lisp error: (invalid-function [remap xref-find-definitions]) ([remap xref-find-definitions]) (let* ((name ([remap xref-find-definitions])) (key (if (vectorp name) name (read-kbd-macro name)))...