[Emacs Lisp] Personal ~/.emacs.d/ configuration folder.
Stop byte compiling init.
init.el
@@ -10,13 +10,13 @@
10
10
11
11
;; Emacs will startup faster next time, because it will load
12
12
;; a byte-compiled version of our literate configuration file.
13
Removed:
(cond ((file-exists-p (concat my/literate-config ".el"))
14
Removed:
(load my/literate-config))
15
Removed:
((file-exists-p (concat my/literate-config ".org"))
16
Removed:
(org-babel-load-file (concat my/literate-config ".org")))
17
Removed:
(t (message "No literate configuration file detected.")))
13
Added:
;; (cond ((file-exists-p (concat my/literate-config ".el"))
14
Added:
;; (load my/literate-config))
15
Added:
;; ((file-exists-p (concat my/literate-config ".org"))
16
Added:
;; (org-babel-load-file (concat my/literate-config ".org")))
17
Added:
;; (t (message "No literate configuration file detected.")))
18
18
19
Removed:
;; (org-babel-load-file (concat my/literate-config ".org"))
19
Added:
(org-babel-load-file (concat my/literate-config ".org"))
20
20
21
21
(provide 'init)
22
22