19 lines
571 B
Text
19 lines
571 B
Text
(defvar NAME-packages
|
|
'(
|
|
;; package names go here
|
|
)
|
|
"List of all packages to install and/or initialize. Built-in packages
|
|
which require an initialization must be listed explicitly in the list.")
|
|
|
|
(defvar NAME-excluded-packages '()
|
|
"List of packages to exclude.")
|
|
|
|
;; For each package, define a function NAME/init-<package-name>
|
|
;;
|
|
;; (defun NAME/init-my-package ()
|
|
;; "Initialize my package"
|
|
;; )
|
|
;;
|
|
;; Often the body of an initialize function uses `use-package'
|
|
;; For more info on `use-package', see readme:
|
|
;; https://github.com/jwiegley/use-package
|