use http instead of https for org source by default
This commit is contained in:
parent
9727207dde
commit
f6fdc23650
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user