Misc. changes.

Commit
4beb28dc5987adc084c89b834f33bb924ab52d2c
Author
Blendoit <blendoit@gmail.com>
Author date
Committer
Blendoit <blendoit@gmail.com>
Committer date
Changed files
smart-documents.org
index a7061bc3..431cd571 100644..100644
@@ -2,16 +2,12 @@
2 2
3 3 #+TITLE: Smart Documents
4 4 #+AUTHOR: Marius Peter
5 Removed: #+DATE: <2020-10-23 Fri>
5 Added: #+DATE: <2020-11-04 Wed>
6 6 #+EMAIL: blendoit@gmail.com
7 7 #+STARTUP: showall
8 8 #+SETUPFILE: ~/.emacs.d/templates/documents/default.org
9 9 #+INCLUDE: ~/.emacs.d/templates/documents/default.org_title
10 10
11 Removed: # Beautiful font pairing
12 Removed: # #+LATEX_HEADER: \setmainfont{urw gothic}
13 Removed: # #+LATEX_HEADER: \setmonofont{hermit}
14 Removed:
15 11 #+LATEX: \begin{abstract}
16 12 The idea of /Smart Documents/ came to me as I was reflecting on how to improve
17 13 the document creation process in my workplace. The GNU Emacs editor had
@@ -391,6 +387,12 @@
391 387 (find-file org-agenda-diary-file)))
392 388 #+END_SRC
393 389
390 Added: *** Open Org mode document properties
391 Added:
392 Added: #+BEGIN_SRC emacs-lisp :tangle yes
393 Added: (global-set-key [f9] 'sd-document-properties)
394 Added: #+END_SRC
395 Added:
394 396 ** Windows
395 397
396 398 *** Make new window
@@ -735,9 +737,22 @@
735 737 :bind (("C-f" . counsel-grep-or-swiper)))
736 738 #+END_SRC
737 739
740 Added: ** Coding languages
741 Added:
742 Added: *** TODO Emacs Lisp
743 Added:
744 Added: *** Python
745 Added:
746 Added: Python is included by default on most Linux distributions.
747 Added:
748 Added: #+BEGIN_SRC emacs-lisp :tangle yes
749 Added: (use-package py-yapf)
750 Added: (add-hook 'python-mode-hook 'py-yapf-enable-on-save)
751 Added: #+END_SRC
752 Added:
738 753 ** File formats
739 754
740 Removed: *** =csv= and Excel
755 Added: *** =csv= and Excel
741 756
742 757 #+BEGIN_SRC emacs-lisp :tangle yes
743 758 (use-package csv-mode)
@@ -1204,8 +1219,6 @@
1204 1219 #+BEGIN_SRC emacs-lisp :tangle yes
1205 1220 (global-tab-line-mode)
1206 1221 #+END_SRC
1207 Removed:
1208 Removed:
1209 1222 ** Buffer
1210 1223
1211 1224 Save cursor location in visited buffer after closing it or Emacs.
smart-documents.pdf
index d57bb4e9..8ea51f48 100644..100644

Binary files differ

themes/blendoit-light-theme.el
index 6da5113f..27c441b4 100644..100644
@@ -1,5 +1,5 @@
1 1 (deftheme blendoit-light
2 Removed: "Created 2020-11-03.")
2 Added: "Created 2020-11-04.")
3 3
4 4 (custom-theme-set-faces
5 5 'blendoit-light
@@ -35,7 +35,7 @@
35 35 '(mode-line-buffer-id ((t (:weight bold))))
36 36 '(mode-line-emphasis ((t (:weight bold))))
37 37 '(mode-line-highlight ((t (:box (:line-width 2 :color "grey40" :style released-button)))))
38 Removed: '(mode-line-inactive ((t (:family "Hermit" :background "SteelBlue4" :foreground "gainsboro" :box (:line-width -1 :color "gainsboro")))))
38 Added: '(mode-line-inactive ((t (:box (:line-width -1 :color "gainsboro") :foreground "gainsboro" :background "SteelBlue4" :height 1.2 :family "Hermit"))))
39 39 '(isearch ((t (:background "DodgerBlue1" :foreground "white"))))
40 40 '(isearch-fail ((t (:background "RosyBrown1"))))
41 41 '(lazy-highlight ((t (:foreground "DodgerBlue1" :box 2))))
@@ -64,7 +64,7 @@
64 64 '(org-document-info ((t (:weight bold))))
65 65 '(org-table ((t (:height 0.8 :family "Hack"))))
66 66 '(org-block ((t (:height 0.8 :family "Hermit"))))
67 Removed: '(org-special-keyword ((t (:inherit org-meta-line))))
67 Added: '(org-special-keyword ((t (:inherit org-meta-line :weight bold :background "white"))))
68 68 '(org-level-1 ((t (:foreground "black" :weight bold :height 1.6 :family "Jost*"))))
69 69 '(org-level-2 ((t (:foreground "gray30" :weight bold :height 1.4))))
70 70 '(org-level-3 ((t (:foreground "gray45" :weight bold :height 1.2))))
@@ -78,7 +78,7 @@
78 78 '(org-done ((t (:background "ForestGreen" :foreground "White" :weight bold :height 1.2 :family "Hermit"))))
79 79 '(org-date ((t (:foreground "steel blue" :family "Hermit"))))
80 80 '(Info-quoted ((t (:inherit org-block))))
81 Removed: '(org-priority ((t (:weight bold :inherit org-meta-line))))
81 Added: '(org-priority ((t (:inherit org-meta-line))))
82 82 '(org-drawer ((t (:inherit org-meta-line))))
83 83 '(tab-line ((t (:background "gainsboro" :family "Hack"))))
84 84 '(tab-line-tab ((default (:inherit (tab-line))) (((class color) (min-colors 88)) (:box (:line-width 1 :color nil :style released-button))) (t (:inverse-video nil))))