use http instead of https for org source by default

This commit is contained in:
Ivan Malison 2016-06-08 14:40:19 -07:00
parent 9727207dde
commit f6fdc23650

View File

@ -1,6 +1,6 @@
(require 'package)
(add-to-list 'package-archives '("org" . "https://orgmode.org/elpa/") t)
(add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/") t)
(defun ensure-packages-installed (packages)
(unless package-archive-contents
@ -16,8 +16,11 @@
(package-initialize)
(ensure-packages-installed '(org-plus-contrib))
(setq custom-file "~/.emacs.d/custom-before.el")
(when (file-exists-p custom-file) (load custom-file))
(org-babel-load-file
(concat (file-name-directory load-file-name) "README.org") t)
(concat (file-name-directory load-file-name) "README.org"))
;; Local Variables:
;; flycheck-disabled-checkers: (emacs-lisp-checkdoc)