blob: 6ccf93bd9b66b4988c9a782c90617629f470b0e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
;; Load literate
(setq user-emacs-directory "~/.config/emacs/")
(defconst +literate/files (list "config.org"))
(defconst +literate/output-files (mapcar #'(lambda (x) (replace-regexp-in-string ".org" ".el" x)) +literate/files))
(defun +literate/load-config ()
(mapc #'(lambda (x) (load-file (concat user-emacs-directory x))) +literate/output-files))
(defun +literate/compile-config ()
(require 'ob-tangle)
(mapc #'org-babel-tangle-file +literate/files))
(defun +literate/files-exist ()
"Checks if output files exist, for compilation purposes. Don't use if only one file."
(require 'cl-lib)
(cl-reduce #'(lambda (x y) (and x y)) (mapc #'file-exists-p +literate/output-files)
:initial-value t))
(add-hook 'kill-emacs-hook #'+literate/compile-config)
(unless (file-exists-p "config.el") ; only one file
(+literate/compile-config))
(+literate/load-config)
(when (daemonp)
(require 'org)
(require 'notmuch)
(require 'eglot)
(require 'ivy))
;; Programming
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
|