[Emacs Lisp] Personal ~/.emacs.d/ configuration folder.
Cleanup.
README.pdf
Binary files differ
blendoit/custom/custom-file.org
@@ -1,67 +0,0 @@
1
Removed:
#+BEGIN_SRC emacs-lisp
2
Removed:
(custom-set-variables
3
Removed:
;; custom-set-variables was added by Custom.
4
Removed:
;; If you edit it by hand, you could mess it up, so be careful.
5
Removed:
;; Your init file should contain only one such instance.
6
Removed:
;; If there is more than one, they won't work right.
7
Removed:
'(ansi-color-names-vector
8
Removed:
["#3F3F3F" "#CC9393" "#7F9F7F" "#F0DFAF" "#8CD0D3" "#DC8CC3" "#93E0E3" "#DCDCCC"])
9
Removed:
'(company-quickhelp-color-background "#4F4F4F")
10
Removed:
'(company-quickhelp-color-foreground "#DCDCCC")
11
Removed:
'(cua-mode t nil (cua-base))
12
Removed:
'(custom-enabled-themes nil)
13
Removed:
'(custom-safe-themes
14
Removed:
(quote
15
Removed:
("f56eb33cd9f1e49c5df0080a3e8a292e83890a61a89bceeaa481a5f183e8e3ef" default)))
16
Removed:
'(fci-rule-color "#383838")
17
Removed:
'(line-number-mode nil)
18
Removed:
'(nrepl-message-colors
19
Removed:
(quote
20
Removed:
("#CC9393" "#DFAF8F" "#F0DFAF" "#7F9F7F" "#BFEBBF" "#93E0E3" "#94BFF3" "#DC8CC3")))
21
Removed:
'(org-agenda-diary-file "~/org/PERSONAL/diary/diary.org")
22
Removed:
'(org-agenda-files (quote ("~/org/PERSONAL/diary/diary.org")))
23
Removed:
'(org-time-stamp-custom-formats (quote ("%d %b, %Y (%a)" . "%d %b, %Y (%a), at %H:%M")))
24
Removed:
'(package-selected-packages
25
Removed:
(quote
26
Removed:
(which-key srefactor-lisp srefactor all-the-icons flycheck ibuffer-sidebar pdf-tools magit rainbow-delimiters smartparens mixed-pitch org-bullets use-package tabbar powerline ivy-hydra flatui-theme evil counsel company benchmark-init)))
27
Removed:
'(pdf-view-midnight-colors (quote ("#DCDCCC" . "#383838")))
28
Removed:
'(vc-annotate-background "#2B2B2B")
29
Removed:
'(vc-annotate-color-map
30
Removed:
(quote
31
Removed:
((20 . "#BC8383")
32
Removed:
(40 . "#CC9393")
33
Removed:
(60 . "#DFAF8F")
34
Removed:
(80 . "#D0BF8F")
35
Removed:
(100 . "#E0CF9F")
36
Removed:
(120 . "#F0DFAF")
37
Removed:
(140 . "#5F7F5F")
38
Removed:
(160 . "#7F9F7F")
39
Removed:
(180 . "#8FB28F")
40
Removed:
(200 . "#9FC59F")
41
Removed:
(220 . "#AFD8AF")
42
Removed:
(240 . "#BFEBBF")
43
Removed:
(260 . "#93E0E3")
44
Removed:
(280 . "#6CA0A3")
45
Removed:
(300 . "#7CB8BB")
46
Removed:
(320 . "#8CD0D3")
47
Removed:
(340 . "#94BFF3")
48
Removed:
(360 . "#DC8CC3"))))
49
Removed:
'(vc-annotate-very-old-color "#DC8CC3"))
50
Removed:
(custom-set-faces
51
Removed:
;; custom-set-faces was added by Custom.
52
Removed:
;; If you edit it by hand, you could mess it up, so be careful.
53
Removed:
;; Your init file should contain only one such instance.
54
Removed:
;; If there is more than one, they won't work right.
55
Removed:
'(default ((t (:family "Hack" :foundry "SRC" :slant normal :weight normal :height 142 :width normal))))
56
Removed:
'(fixed-pitch ((t (:family "Hack"))))
57
Removed:
'(org-document-title ((t (:inherit default :weight bold :font "Liberation Sans" :height 2.0 :underline nil))))
58
Removed:
'(org-level-1 ((t (:inherit default :weight bold :font "Liberation Sans" :height 1.75))))
59
Removed:
'(org-level-2 ((t (:inherit default :weight bold :font "Liberation Sans" :height 1.5))))
60
Removed:
'(org-level-3 ((t (:inherit default :weight bold :font "Liberation Sans" :height 1.25))))
61
Removed:
'(org-level-4 ((t (:inherit default :weight bold :font "Liberation Sans" :height 1.1))))
62
Removed:
'(org-level-5 ((t (:inherit default :weight bold :font "Liberation Sans"))))
63
Removed:
'(org-level-6 ((t (:inherit default :weight bold :font "Liberation Sans"))))
64
Removed:
'(org-level-7 ((t (:inherit default :weight bold :font "Liberation Sans"))))
65
Removed:
'(org-level-8 ((t (:inherit default :weight bold :font "Liberation Sans"))))
66
Removed:
'(variable-pitch ((t (:family "Liberation Sans")))))
67
Removed:
#+END_SRC
blendoit/init-blendoit.org
@@ -7,8 +7,8 @@
7
7
8
8
#+BEGIN_abstract
9
9
Emacs enables an unparalleled level of customisation by allowing the
10
Removed:
introspection of every variable and function that can be understood by the
11
Removed:
software. The possibilities are endless.
10
Added:
introspection of every variable and function that can be understood by
11
Added:
the software. The possibilities are endless.
12
12
#+END_abstract
13
13
14
14
* Preliminary setup
@@ -30,7 +30,6 @@
30
30
31
31
#+NAME: custom-file
32
32
#+BEGIN_SRC emacs-lisp
33
Removed:
34
33
(setq custom-file "~/.emacs.d/blendoit/custom/custom-file.el")
35
34
(load custom-file)
36
35
#+END_SRC