diff options
author | Ashton Wiersdorf <mail@wiersdorf.dev> | 2023-04-13 10:40:44 -0600 |
---|---|---|
committer | Ashton Wiersdorf <mail@wiersdorf.dev> | 2023-04-13 10:40:44 -0600 |
commit | 3279f5e1b7d005e71a4bd72882fccffd71364805 (patch) | |
tree | ed43170c70745fc96e5f6d9e4b76a614964ed1d7 | |
parent | f7e2f3cbf7effe9f41fb062757ab6ffe02791a8b (diff) |
Add Non-GNU ELPA
-rw-r--r-- | init.el | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -28,9 +28,9 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Package initialization -(require 'package) -(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) -(package-initialize) +(with-eval-after-load 'package + (add-to-list 'package-archives '("nongnu" . "https://elpa.nongnu.org/nongnu/")) + (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)) ;; If you want to turn off the welcome screen, uncomment this ;(setq inhibit-splash-screen t) |