diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2019-12-23 16:18:52 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2019-12-23 16:18:52 -0800 |
commit | b876a61311f9516161f5033839689bc87a20ec55 (patch) | |
tree | 293a015a6e085dc0f83e36dff9afd8383463b82c /emacs | |
parent | emacs: use eglot for LSP (diff) | |
download | emacs.d-b876a61311f9516161f5033839689bc87a20ec55.tar.gz |
emacs: add gnu to melpa.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index 64b464a..19d895c 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -2,7 +2,7 @@ (require 'package) (setq package-archives '(("melpa" . "https://melpa.org/packages/") - ("org" . "https://orgmode.org/elpa/"))) + ("gnu" . "https://elpa.gnu.org/packages/"))) ;; and now we load custom configurations (add-to-list 'load-path (expand-file-name "custom" user-emacs-directory)) @@ -13,6 +13,7 @@ (setq package-user-dir fcuny/path-emacs-elpa) ;; initialize it +(setq package-enable-at-startup nil) (package-initialize) ;; if use-package is not present, we install it |