forked from colonelpanic/dotfiles
We set the load-prefer-newer in init.el, so automatic compilation should be relatively safe. Still worth looking out for any issues this commit might cause.
16 lines
367 B
EmacsLisp
16 lines
367 B
EmacsLisp
;; -*- no-byte-compile: t -*-
|
|
(require 'package)
|
|
(package-initialize)
|
|
|
|
(setq load-prefer-newer t)
|
|
|
|
(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"))
|
|
|
|
;; Local Variables:
|
|
;; flycheck-disabled-checkers: (emacs-lisp-checkdoc)
|
|
;; End:
|