epkg: no longer set epkg-repository explicitly

Updated `no-littering' puts that repository in "var/" already, so
we do not have to do that anymore.  However a user (i.e. me) might
want to put that repository yet somewhere else and to enable that
`no-littering' has to be loaded before `epkg' is configured, so
switch the positions of the two `use-package' forms.
This commit is contained in:
Jonas Bernoulli 2017-07-26 23:05:52 +02:00
parent 6c0a9051dd
commit 3bdb26373f

View File

@ -42,13 +42,11 @@
(add-hook 'auto-compile-inhibit-compile-hook
'auto-compile-inhibit-compile-detached-git-head))
(use-package epkg
:defer t
:init (setq epkg-repository
(expand-file-name "var/epkgs/" user-emacs-directory)))
(use-package no-littering)
(use-package epkg
:defer t)
(use-package custom
:config
(setq custom-file (expand-file-name "custom.el" user-emacs-directory))