mirror of
https://github.com/emacscollective/emacs.g.git
synced 2025-11-23 11:41:18 -05:00
We don't use package.el, but if we do for testing purposes then its nice if things are already configured properly.
18 lines
471 B
EmacsLisp
18 lines
471 B
EmacsLisp
;;; early-init.el --- earliest birds -*- lexical-binding: t -*-
|
|
|
|
(setq package-enable-at-startup nil)
|
|
|
|
(with-eval-after-load 'package
|
|
(add-to-list 'package-archives
|
|
(cons "melpa" "https://melpa.org/packages/")
|
|
t)
|
|
(add-to-list 'package-archives
|
|
(cons "org" "https://orgmode.org/elpa/")
|
|
t))
|
|
|
|
;; Local Variables:
|
|
;; no-byte-compile: t
|
|
;; indent-tabs-mode: nil
|
|
;; End:
|
|
;;; early-init.el ends here
|