Most of :quelpa recipes I use are just downloaded from github so to avoid duplications I'd like to write them like:
(use-package fnhh
:quelpa "a13/fnhh"
:config
(fnhh-mode 1))
instead of the current
(use-package fnhh
:quelpa
(fnhh :repo "a13/fnhh" :fetcher github)
:config
(fnhh-mode 1))
I think it's very easy to (and I'm ready to) implement such functionality in use-package-normalize/:quelpa, so we can get package name from name-symbol, the default :fetcher keyword can be a defcustom, which defaults to github.
Most of :quelpa recipes I use are just downloaded from github so to avoid duplications I'd like to write them like:
instead of the current
I think it's very easy to (and I'm ready to) implement such functionality in
use-package-normalize/:quelpa, so we can get package name fromname-symbol, the default:fetcherkeyword can be adefcustom, which defaults to github.