diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2018-03-09 15:13:40 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2018-03-18 21:47:41 -0400 |
commit | ea2d3c215b3b781a5a07a6e8ea51de51c580faf1 (patch) | |
tree | 92f3fb2560ab8d1808cf7ec1299516579e8a52dc | |
parent | cc7c66d2fb69df3cb176ed68eb5c776305994f51 (diff) |
emacs: place melpa *after* the main GNU servers
-rw-r--r-- | .config/emacs/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el index da8763f..7ce9d61 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -52,7 +52,7 @@ ;; package.el (require 'package) -(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/")) +(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/") t) (setq package-enable-at-startup nil) (package-initialize) ;; use-package.el |