-
|
I have a computer that uses guix to manage emacs packages, but on my other computers, I would like to use straight to manage them. I'm trying to figure out how to make minimal changes to my init.el so that that I can use the same init on all machines. Something like this fails: What's the right way to change the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
There's no direct way to do this with (if guix-p
(straight-register-package 'no-littering)
(straight-use-package 'no-littering))
(use-package no-littering
:demand t
:config
(no-littering-theme-backups))If you want, you could write a macro wrapping |
Beta Was this translation helpful? Give feedback.
There's no direct way to do this with
use-package. You can instead just separate out thestraight.elinvocation, to:If you want, you could write a macro wrapping
use-packagethat would implement this behavior by default, and use it in your configuration.