my-emacs-d/init.el

17 lines
413 B
EmacsLisp
Raw Normal View History

;;; init --- Summary
;;; Commentary:
;;; Code:
(setq custom-file (concat user-emacs-directory "customizations.el"))
(load custom-file)
;; Initialize the package system and use-package
(setq load-prefer-newer t)
2016-08-18 20:01:20 +00:00
2018-07-29 16:38:44 +00:00
;; I started moving my configuration to this Org file. Its easier to document this way.
(org-babel-load-file (expand-file-name "configuration.org" user-emacs-directory))
2016-09-15 14:08:54 +00:00
;;; init.el ends here