[Emacs Lisp] Personal ~/.emacs.d/ configuration folder.
Make prettier.
Changed files
early-init.el
@@ -1,4 +1,15 @@
1
Added:
;; These settings ensure Emacs does not flicker during early setup.
2
Added:
1
3
(menu-bar-mode -1)
2
4
(tool-bar-mode -1)
5
Added:
(scroll-bar-mode -1)
3
6
(menu-bar-bottom-and-right-window-divider)
4
7
(setq gc-cons-threshold 100000000)
8
Added:
9
Added:
(provide 'early-init)
10
Added:
11
Added:
;;; early-init.el ends here
12
Added:
13
Added:
;; Local Variables:
14
Added:
;; mode: emacs-lisp
15
Added:
;; End:
init.el
@@ -6,10 +6,17 @@
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.org"))
9
Added:
(setq sd-literate-config (concat
10
Added:
user-emacs-directory
11
Added:
"smart-documents.org"))
12
Added:
10
13
;; Then, we load this file into Emacs' memory.
11
Removed:
(org-babel-load-file my/literate-config)
14
Added:
(org-babel-load-file sd-literate-config)
12
15
13
16
(provide 'init)
14
17
15
18
;;; init.el ends here
19
Added:
20
Added:
;; Local Variables:
21
Added:
;; mode: emacs-lisp
22
Added:
;; End: