summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--emacs.d/init.el3
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