[Emacs Lisp] Personal ~/.emacs.d/ configuration folder.
Misc.
.gitignore
@@ -18,6 +18,7 @@
18
18
.cache/**
19
19
_minted*
20
20
emojis/*
21
Added:
server/*
21
22
22
23
# Tangled config .el and .elc file from .org
23
24
smart-documents.el*
@@ -25,5 +26,4 @@
25
26
# Misc
26
27
.org-id-locations
27
28
async-bytecomp.log
28
Removed:
fonts/*
29
29
srecode-map.el
custom.el
@@ -17,7 +17,7 @@
17
17
'(cua-mode t nil (cua-base))
18
18
'(custom-enabled-themes nil)
19
19
'(custom-safe-themes
20
Removed:
'("acad5bdfb9965352b90f50b2ffc47fbfd1ac708dcfbef8354aadc38240f1e478" "42e821f3d0d3a0ee44210b5d3bfc2f89f1a62d095512ec59737457209373d47b" "b969eb451a141d5d438b9b9814ed85252ad4411d71385cd5217a4a7f51844677" "d00ef309aa3e60f4c5780f2439dfde87eb7a927aa12f47a975d345a83483f708" "a9cfa0b8beb9e5edd204d709e86730224cc1995b2ac67da038bf83cf5b5dc0d4" "82c35cda29ae87484d769e19262fe9aa7d65c6ea7869088d05eaf5cda06cb4ca" default))
20
Added:
'("0ab22463613090e46ea3b4a9a63c683e5b7fb5672cbf4888c720984caf1f5de1" "f78bb8993b8eb972db7d116f46b5969b38bb793f0a26f0b85d07546ac5248098" "59104e0700545965a14e2ab985884f81e7a41a6ea92c01c55979e1b92e47ebdc" "acad5bdfb9965352b90f50b2ffc47fbfd1ac708dcfbef8354aadc38240f1e478" "42e821f3d0d3a0ee44210b5d3bfc2f89f1a62d095512ec59737457209373d47b" "b969eb451a141d5d438b9b9814ed85252ad4411d71385cd5217a4a7f51844677" "d00ef309aa3e60f4c5780f2439dfde87eb7a927aa12f47a975d345a83483f708" "a9cfa0b8beb9e5edd204d709e86730224cc1995b2ac67da038bf83cf5b5dc0d4" "82c35cda29ae87484d769e19262fe9aa7d65c6ea7869088d05eaf5cda06cb4ca" default))
21
21
'(electric-indent-mode t)
22
22
'(erc-autojoin-channels-alist
23
23
'(("freenode.net" "##linux" "#linux" "#archlinux" "#emacs" "#bitcoin" "#latex" "#org-mode" "#python")))
@@ -35,6 +35,7 @@
35
35
'(org-agenda-files '("~/org/PERSONAL/diary/diary.org"))
36
36
'(org-agenda-include-diary t)
37
37
'(org-agenda-skip-scheduled-if-deadline-is-shown 'not-today)
38
Added:
'(org-latex-compiler "lualatex")
38
39
'(org-log-done 'time)
39
40
'(org-log-done-with-time nil)
40
41
'(org-startup-align-all-tables t)
smart-documents.org
@@ -5,7 +5,7 @@
5
5
#+DATE: <2020-12-19 Sat>
6
6
#+EMAIL: blendoit@gmail.com
7
7
#+STARTUP: showall
8
Removed:
#+SETUPFILE: ~/.emacs.d/templates/documents/default.org
8
Added:
#+SETUPFILE: ~/.emacs.d/templates/documents/ms-default.org
9
9
#+INCLUDE: ~/.emacs.d/templates/documents/default-title.org
10
10
11
11
#+LATEX_HEADER_EXTRA: \newfontfamily\garamond{EB Garamond}
@@ -293,7 +293,7 @@
293
293
We set the dimensions of the initial frame:
294
294
295
295
#+BEGIN_SRC emacs-lisp :tangle yes
296
Removed:
(add-to-list 'initial-frame-alist '(width . 100))
296
Added:
(add-to-list 'initial-frame-alist '(width . 100))
297
297
(add-to-list 'initial-frame-alist '(height . 50))
298
298
#+END_SRC
299
299
@@ -872,7 +872,7 @@
872
872
Org mode shines particularly when exporting to PDF---Org files can
873
873
reliably be shared and exported to PDF in a reproducible fashion.
874
874
875
Removed:
#+BEGIN_SRC emacs-lisp :tangle yes
875
Added:
#+BEGIN_SRC emacs-lisp :tangle no
876
876
(use-package pdf-tools)
877
877
(pdf-tools-install)
878
878
#+END_SRC
@@ -1656,8 +1656,8 @@
1656
1656
1657
1657
#+BEGIN_SRC emacs-lisp :tangle yes
1658
1658
(setq custom-theme-directory (concat user-emacs-directory "themes/"))
1659
Removed:
;; (load-theme 'sd-light)
1660
Removed:
(load-theme 'sd-dark)
1659
Added:
(load-theme 'sd-light)
1660
Added:
;; (load-theme 'sd-dark)
1661
1661
#+END_SRC
1662
1662
1663
1663
** My light and dark themes
@@ -1728,6 +1728,9 @@
1728
1728
- Slightly wider than Hack
1729
1729
- More opinionated shapes
1730
1730
- Very legible parentheses, very useful for Emacs Lisp!
1731
Added:
- Courier
1732
Added:
Prime[fn::https://quoteunquoteapps.com/courierprime/index.php] ::
1733
Added:
certain monospace usages
1731
1734
- Jost[fn::https://indestructibletype.com/Jost.html] :: ~org-document-title~
1732
1735
and ~org-level-1~
1733
1736
- Ultra-modern
smart-documents.pdf
Binary files differ
themes/sd-light-theme.el
@@ -1,5 +1,5 @@
1
1
(deftheme sd-light
2
Removed:
"Created 2020-12-19.")
2
Added:
"Created 2020-12-22.")
3
3
4
4
(custom-theme-set-faces
5
5
'sd-light
@@ -84,7 +84,7 @@
84
84
'(swiper-match-face-2 ((t (:inherit isearch))))
85
85
'(swiper-match-face-3 ((t (:foreground "chocolate" :inherit isearch))))
86
86
'(swiper-match-face-4 ((t (:foreground "yellow" :inherit isearch))))
87
Removed:
'(tooltip ((t (:inherit variable-pitch :background "lightyellow" :foreground "black"))))
87
Added:
'(tooltip ((t (:foreground "black" :background "gainsboro" :inherit org-meta-line))))
88
88
'(trailing-whitespace ((((class color) (background light)) (:background "red1")) (((class color) (background dark)) (:background "red1")) (t (:inverse-video t))))
89
89
'(variable-pitch ((t (:family "Public Sans"))))
90
90
'(line-number ((t (:background "white smoke" :foreground "LightSteelBlue3" :weight normal :height 0.8 :family "Hack"))))