[Emacs Lisp] Personal ~/.emacs.d/ configuration folder.
Clean up init.
init.el
@@ -6,17 +6,9 @@
6
6
;;; Code:
7
7
8
8
;; First of all, we indicate the path to our literate configuration file.
9
Removed:
(setq my/literate-config (concat user-emacs-directory "smart-documents"))
10
Removed:
11
Removed:
;; Emacs will startup faster next time, because it will load
12
Removed:
;; 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.")))
18
Removed:
19
Removed:
(org-babel-load-file (concat my/literate-config ".org"))
9
Added:
(setq my/literate-config (concat user-emacs-directory "smart-documents.org"))
10
Added:
;; Then, we load this file into Emacs' memory.
11
Added:
(org-babel-load-file my/literate-config)
20
12
21
13
(provide 'init)
22
14