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 22:01:20 +02:00
2018-07-29 18:38:44 +02: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 16:08:54 +02:00
;;; init.el ends here