commit 2c52f0eb2419fb38d9c7a1f26edda78daa2c52ac
parent 320d362e26549ec4fad4c2d1e80da201a34e6805
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date: Thu, 19 Oct 2017 23:56:36 -0500
Removed redundant (package-initialize).
Diffstat:
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/README.org b/README.org
@@ -8,14 +8,14 @@ After installation, you may need to run =M-x list-packages= and reload =init.el=
** Module Descriptions
Here's a short description for each module.
-| Module | Notes |
-|------------+-----------------------|
+| Module | Notes |
+|----------------+-----------------------|
| [[Packages]] | Package management. |
| [[Aesthetics]] | UI and theme configs. |
| [[Org-mode]] | Org-mode settings. |
| [[Helm]] | Autocompletion. |
| [[Auctex]] | Latex settings. |
-| [[Ox-hugo]] | =hugo= Exporter |
+| [[Ox-hugo]] | =hugo= exporter. |
| [[Magit]] | Git interface. |
* Packages
@@ -25,7 +25,6 @@ Manage my package settings.
Initialize Emacs Package Manager and add repositories (only melpa for now).
#+BEGIN_SRC emacs-lisp
-(package-initialize) ;; You might already have this line
(require 'package)
(let* ((no-ssl (and (memq system-type '(windows-nt ms-dos))
(not (gnutls-available-p))))
@@ -33,8 +32,7 @@ Initialize Emacs Package Manager and add repositories (only melpa for now).
(add-to-list 'package-archives (cons "melpa" url) t))
(when (< emacs-major-version 24)
;; For important compatibility libraries like cl-lib
-(add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/")))
-(package-initialize)
+ (add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/")))
#+END_SRC
** Base packages to install