Evie Litherland-Smith
20fee03fa0
Package list now accessible from running Emacs as well as installed Makefile directive.
11 lines
313 B
EmacsLisp
11 lines
313 B
EmacsLisp
;;; install.el -- Handle installing selected packages -*- lexical-binding: t -*-
|
|
;;; Commentary:
|
|
;;; Code:
|
|
;; Configure packages archives with priority
|
|
(load-file "lib/my-packages.el")
|
|
(package-refresh-contents)
|
|
(package-install-selected-packages)
|
|
(package-autoremove)
|
|
(provide 'install)
|
|
;;; install.el ends here
|