blob: eb25e2eb74948c8a44d3296c1466064c7f894c99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
;; init.el -*- lexical-binding: t -*-
(setq load-prefer-newer t)
(let* (;; Speed up init
(gc-cons-threshold most-positive-fixnum)
(file-name-handler-alist nil)
;; Config file names
(conf (expand-file-name "config"
user-emacs-directory))
(conf-el (concat conf ".el"))
(conf-org (concat conf ".org")))
(unless (and (file-newer-than-file-p conf-el conf-org)
(load conf 'no-error))
;; A plain require here just loads the older `org' in Emacs' install dir. We
;; need to add the newer one to the `load-path', hopefully that's all.
(add-to-list 'load-path (expand-file-name "straight/build/org/"))
(require 'org)
(org-babel-load-file conf-org)))
|