dotfiles/dotfiles/emacs.d/init.el
Ivan Malison 62ba0f0413 Set up automatic compilation of emacs-lisp
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.
2016-06-21 22:37:44 -07:00

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: