Evie Litherland-Smith
1dec1f8f4d
Does the job of install.el but is available within an Emacs session. install.el simply calls my/package-ensure-installed
9 lines
273 B
EmacsLisp
9 lines
273 B
EmacsLisp
;;; install.el -- Handle installing selected packages -*- lexical-binding: t -*-
|
|
;;; Commentary:
|
|
;;; Code:
|
|
;; Configure packages archives with priority
|
|
(load-file (locate-user-emacs-file "init.el"))
|
|
(my/package-ensure-installed)
|
|
(provide 'install)
|
|
;;; install.el ends here
|