2017-11-29 12:45:52 +00:00
|
|
|
|
;;; init --- Summary
|
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
2016-11-01 16:03:01 +00:00
|
|
|
|
(setq custom-file (concat user-emacs-directory "customizations.el"))
|
|
|
|
|
(load custom-file)
|
|
|
|
|
|
2016-10-19 06:05:12 +00:00
|
|
|
|
;; Initialize the package system and use-package
|
2016-10-21 12:44:02 +00:00
|
|
|
|
(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. It’s 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
|
|
|
|
|
2017-11-29 12:48:15 +00:00
|
|
|
|
;;; init.el ends here
|