diff options
author | Franck Cuny <fcuny@twitter.com> | 2019-06-21 12:20:08 -0700 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2019-06-21 12:20:08 -0700 |
commit | 30c5cfd4307f594f29e145697a3cfaae546f2845 (patch) | |
tree | 9c1e43045b06e549a560110d901f64423c7162d1 | |
parent | [emacs] Trying to fix my go setup (diff) | |
download | emacs.d-30c5cfd4307f594f29e145697a3cfaae546f2845.tar.gz |
[emacs] add elpa repo for org.
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 44b4a47..7bab186 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -1,7 +1,8 @@ ;; Initialize the package system first of all. (require 'package) -(setq package-archives '(("melpa" . "https://melpa.org/packages/"))) +(setq package-archives '(("melpa" . "https://melpa.org/packages/") + ("org" . "https://orgmode.org/elpa/"))) ;; and now we load custom configurations (add-to-list 'load-path (expand-file-name "custom" user-emacs-directory)) |