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