You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@eschulte in the code snippet below from starter-kit.org you state that two packages are listed to be installed by default. Is that really the case? Isn't the variable starter-kit-packages set to nil or are the two packages installed later in the starter-kit e.g. magit in starter-kit-misc.org. Apologies if this is a silly question or if this is not the best way to raise a query on your project. Still very early on my journey with emacs. Helped enormously though by your starter-kit so many thanks. I've been trying to better understand your code and submitting some simple PRs.
ELPA archive repositories and two packages to install by default.
(setq package-archives
'(("gnu"."http://elpa.gnu.org/packages/")
("org"."http://orgmode.org/elpa/")
("melpa"."http://melpa.milkbox.net/packages/")
("marmalade"."http://marmalade-repo.org/packages/")))
(package-initialize)
(defvarstarter-kit-packagesnil"Libraries that should be installed by default (currently none).")
(defunstarter-kit-install-if-needed (&restpackages)
"Install PACKAGES using ELPA if they are not loadable or installed locally."
(when packages
(unless package-archive-contents
(package-refresh-contents))
(dolist (package packages)
(unless (or (starter-kit-loadable-p package)
(package-installed-ppackage))
(package-installpackage)))))
The text was updated successfully, but these errors were encountered:
@eschulte in the code snippet below from starter-kit.org you state that two packages are listed to be installed by default. Is that really the case? Isn't the variable starter-kit-packages set to nil or are the two packages installed later in the starter-kit e.g. magit in starter-kit-misc.org. Apologies if this is a silly question or if this is not the best way to raise a query on your project. Still very early on my journey with emacs. Helped enormously though by your starter-kit so many thanks. I've been trying to better understand your code and submitting some simple PRs.
The text was updated successfully, but these errors were encountered: