2023-10-27 08:03:51 +01:00
|
|
|
;;; early-init.el --- Emac s early initialization for Crafted Emacs (optional) -*- lexical-binding: t; -*-
|
2023-10-25 15:47:35 +01:00
|
|
|
;;; Commentary:
|
|
|
|
;;
|
|
|
|
;;; Code:
|
2023-10-27 08:03:51 +01:00
|
|
|
(add-to-list 'package-archives '("stable" . "https://stable.melpa.org/packages/"))
|
|
|
|
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/"))
|
2023-10-25 15:47:35 +01:00
|
|
|
|
2023-10-27 08:03:51 +01:00
|
|
|
(setq package-archive-priorities '(("gnu" . 99)
|
|
|
|
("nongnu" . 80)
|
|
|
|
("stable" . 70)
|
|
|
|
("melpa" . 0)))
|
|
|
|
|
|
|
|
(when (require 'package nil :noerror) (package-refresh-contents))
|
2023-10-25 15:47:35 +01:00
|
|
|
|
|
|
|
(provide 'early-init)
|
|
|
|
|
|
|
|
;;; early-init.el ends here
|