Disable ~mixed-pitch~, update light theme, update to Emacs 27.1

Commit
a77a1947c96c0e2926b67dd924a894094ab5c501
Author
PETER Marius (SAFRAN PASSENGER SOLUTIONS) <Marius.Peter@corp.zodiac.lan>
Author date
Committer
PETER Marius (SAFRAN PASSENGER SOLUTIONS) <Marius.Peter@corp.zodiac.lan>
Committer date
Changed files
blendoit/blendoit-init.org
index 926cb792..f8b8144c 100644..100644
@@ -28,19 +28,14 @@
28 28 # (org-babel-load-file "~/.emacs.d/blendoit/test.org")
29 29 # #+END_SRC
30 30
31 Removed: * Document structure
32 Removed: :PROPERTIES:
33 Removed: :UNNUMBERED: t
34 Removed: :END:
31 Added: # * Blending Linux and Windows
35 32
36 Removed: ** Blending Linux and Windows
33 Added: # - The GNU Emacs cabal is attempting to create a complete OS out of a text
34 Added: # editor.
35 Added: # - Microsoft has a notorious /embrace, extend, extinguish/ approach when it
36 Added: # comes to rival technologies.
37 Added: # - Both are simultaneously possible.
37 38
38 Removed: - The GNU Emacs cabal is attempting to create a complete OS out of a text
39 Removed: editor.
40 Removed: - Microsoft has a notorious /embrace, extend, extinguish/ approach when it
41 Removed: comes to rival technologies.
42 Removed: - Both are simultaneously possible.
43 Removed:
44 39 * TODO First-time setup
45 40
46 41 Spacemacs-like dialog for default settings.
@@ -160,7 +155,7 @@
160 155
161 156 In this subsection, we tell Emacs about relevant paths to resources.
162 157
163 Removed: On my Windows machine, I add the path to Portable Git.[fn::Download from
158 Added: On my MS Windows machine, I add the path to Portable Git.[fn::Download from
164 159 https://git-scm.com/download/win]
165 160
166 161 #+BEGIN_SRC emacs-lisp
@@ -336,7 +331,7 @@
336 331
337 332 #+NAME: org-basic
338 333 #+BEGIN_SRC emacs-lisp
339 Removed: ;; (setq org-hide-emphasis-markers t)
334 Added: (setq org-hide-emphasis-markers t)
340 335 (setq org-startup-indented t)
341 336 #+END_SRC
342 337
@@ -345,34 +340,6 @@
345 340 Mean (the input contains instructions that can modify the output).] behavior
346 341 normally found in Word:
347 342
348 Removed: #+NAME: org-list-bullets
349 Removed: #+BEGIN_SRC emacs-lisp
350 Removed: (font-lock-add-keywords
351 Removed: 'org-mode
352 Removed: '(("^ *\\([-]\\) "
353 Removed: (0 (prog1 () (compose-region (match-beginning 1) (match-end 1) "•"))))))
354 Removed: #+END_SRC
355 Removed:
356 Removed: - Look at
357 Removed: - This beautifully indented
358 Removed: - List...
359 Removed: - Of lists!
360 Removed: - (Rendered with pretty bullets in Emacs)
361 Removed:
362 Removed: *** ~org-bullets~
363 Removed:
364 Removed: No need for ~org-bullets~. MS Windows garbles the 3^{rd} level bullet.
365 Removed:
366 Removed: The following prettifies Org mode heading bullets:
367 Removed:
368 Removed: # #+NAME: org-heading-bullets
369 Removed: # #+BEGIN_SRC emacs-lisp
370 Removed: # (use-package org-bullets
371 Removed: # :hook
372 Removed: # (org-mode . org-bullets-mode)
373 Removed: # )
374 Removed: # #+END_SRC
375 Removed:
376 343 *** Invisible edits
377 344
378 345 #+BEGIN_SRC emacs-lisp
@@ -383,7 +350,7 @@
383 350
384 351 The agenda displays a chronological list of headings across all agenda files
385 352 for which the heading or body contain a matching =org-time-stamp=.[fn::An
386 Removed: ~org-time-stamp~ can be inserted with ~C-c .~ (period)]
353 Added: =org-time-stamp= can be inserted with ~C-c .~ (period)]
387 354
388 355 #+BEGIN_SRC emacs-lisp
389 356 (global-set-key (kbd "C-c a") 'org-agenda-list)
@@ -477,9 +444,7 @@
477 444 "Org export to PDF and open.
478 445 This basically reimplements `C-c C-e l o'."
479 446 (interactive)
480 Removed: (org-latex-export-to-pdf)
481 Removed: (org-open-file
482 Removed: (concat (substring buffer-file-truename 0 -3) "pdf")))
447 Added: (org-open-file (org-latex-export-to-pdf)))
483 448
484 449 (global-set-key (kbd "C-c e") 'blendoit-org-quick-export)
485 450 #+END_SRC
@@ -515,23 +480,27 @@
515 480 ** ibuffer-sidebar
516 481
517 482 #+BEGIN_SRC emacs-lisp
518 Removed: (use-package ibuffer-sidebar)
519 Removed: (ibuffer-sidebar-show-sidebar)
483 Added: ;; (use-package ibuffer-sidebar)
484 Added: ;; (ibuffer-sidebar-show-sidebar)
520 485
521 Removed: ; :bind ("mouse-1" . ibuffer-mouse-visit-buffer)
522 Removed: ; :bind ("mouse-3" . ibuffer-mouse-toggle-mark))
486 Added: ; :bind ("mouse-1" . ibuffer-mouse-visit-buffer)
487 Added: ; :bind ("mouse-3" . ibuffer-mouse-toggle-mark))
523 488
524 Removed: ; (add-hook 'ibuffer-sidebar-mode-hook
525 Removed: ; (lambda ()
526 Removed: ; (local-unset-key (quote mouse-1))
527 Removed: ; (local-unset-key (quote mouse-2))
528 Removed: ; (local-set-key (quote mouse-1) (quote ibuffer-mouse-visit-buffer))
529 Removed: ; (local-set-key (quote mouse-2) (quote ibuffer-mouse-toggle-mark))))
489 Added: ; (add-hook 'ibuffer-sidebar-mode-hook
490 Added: ; (lambda ()
491 Added: ; (local-unset-key (quote mouse-1))
492 Added: ; (local-unset-key (quote mouse-2))
493 Added: ; (local-set-key (quote mouse-1) (quote ibuffer-mouse-visit-buffer))
494 Added: ; (local-set-key (quote mouse-2) (quote ibuffer-mouse-toggle-mark))))
530 495 #+END_SRC
531 496
532 497 ** TODO Sidebar
533 498 Get inspiration from ~ibuffer-sidebar~ and create a better sidebar.
534 499
500 Added: #+BEGIN_SRC emacs-lisp
501 Added: ;; (load-file)
502 Added: #+END_SRC
503 Added:
535 504 ** ~which-key~
536 505
537 506 #+BEGIN_SRC emacs-lisp
@@ -687,10 +656,15 @@
687 656 Fixed-pitch and variable-pitch faces will be used intelligently in all hooked
688 657 modes.
689 658
659 Added: ~mixed-pitch~ is good at automatically determining which faces should be
660 Added: monospaced and proportional; I prefer to define each face in my custom theme.
661 Added:
690 662 #+BEGIN_SRC emacs-lisp
691 Removed: (use-package mixed-pitch
692 Removed: :hook ((org-mode . mixed-pitch-mode)
693 Removed: (Info-mode . mixed-pitch-mode)))
663 Added: ;; (use-package mixed-pitch
664 Added: ;; :hook ((org-mode . mixed-pitch-mode)
665 Added: ;; (Info-mode . mixed-pitch-mode)))
666 Added:
667 Added: (add-hook 'text-mode-hook 'variable-pitch-mode)
694 668 #+END_SRC
695 669
696 670 ** Initial frame
@@ -712,6 +686,22 @@
712 686 (setq custom-theme-directory "~/.emacs.d/blendoit/themes/")
713 687 (load-theme 'blendoit-light)
714 688 #+END_SRC
689 Added:
690 Added: *** ~blendoit-light~
691 Added:
692 Added: A highly legible and unambiguous theme.
693 Added:
694 Added: The default face is a black foreground on a white background, this matches with
695 Added: MS Word.
696 Added:
697 Added: - Red :: TODO; cursor; negative; danger
698 Added: - Green :: DONE; positive
699 Added: - Blue :: document structure
700 Added: - Purple :: ~org-mode~ elements
701 Added:
702 Added: *** ~blendoit-dark~
703 Added:
704 Added:
715 705
716 706 * Editing preferences
717 707
blendoit/blendoit-init.pdf
index 99ca2438..9699eaeb 100644..100644

Binary files differ

blendoit/themes/blendoit-light-theme.el
index 6f1d59bb..40ee7af9 100644..100644
@@ -1,18 +1,18 @@
1 1 (deftheme blendoit-light
2 Removed: "Created 2020-08-12.")
2 Added: "Created 2020-08-14.")
3 3
4 4 (custom-theme-set-faces
5 5 'blendoit-light
6 6 '(variable-pitch ((t (:family "Liberation Sans"))))
7 7 '(escape-glyph ((((background dark)) (:foreground "cyan")) (((type pc)) (:foreground "magenta")) (t (:foreground "brown"))))
8 8 '(homoglyph ((((background dark)) (:foreground "cyan")) (((type pc)) (:foreground "magenta")) (t (:foreground "brown"))))
9 Removed: '(minibuffer-prompt ((((background dark)) (:foreground "cyan")) (((type pc)) (:foreground "magenta")) (t (:foreground "medium blue"))))
10 Removed: '(highlight ((t (:underline nil :foreground "#ffffff" :background "#454545"))))
9 Added: '(minibuffer-prompt ((t (:foreground "purple" :family "Hermit"))))
10 Added: '(highlight ((t (:background "light sky blue" :foreground "white"))))
11 11 '(region ((t (:background "light gray"))))
12 12 '(shadow ((t (:foreground "dark slate gray"))))
13 13 '(secondary-selection ((((class color) (min-colors 88) (background light)) (:background "yellow1")) (((class color) (min-colors 88) (background dark)) (:background "SkyBlue4")) (((class color) (min-colors 16) (background light)) (:background "yellow")) (((class color) (min-colors 16) (background dark)) (:background "SkyBlue4")) (((class color) (min-colors 8)) (:foreground "black" :background "cyan")) (t (:inverse-video t))))
14 14 '(trailing-whitespace ((((class color) (background light)) (:background "red1")) (((class color) (background dark)) (:background "red1")) (t (:inverse-video t))))
15 Removed: '(font-lock-builtin-face ((((class grayscale) (background light)) (:weight bold :foreground "LightGray")) (((class grayscale) (background dark)) (:weight bold :foreground "DimGray")) (((class color) (min-colors 88) (background light)) (:foreground "dark slate blue")) (((class color) (min-colors 88) (background dark)) (:foreground "LightSteelBlue")) (((class color) (min-colors 16) (background light)) (:foreground "Orchid")) (((class color) (min-colors 16) (background dark)) (:foreground "LightSteelBlue")) (((class color) (min-colors 8)) (:weight bold :foreground "blue")) (t (:weight bold))))
15 Added: '(font-lock-builtin-face ((t (:foreground "dark slate blue"))))
16 16 '(font-lock-comment-delimiter-face ((t (:foreground "dim gray" :inherit font-lock-comment-face))))
17 17 '(font-lock-comment-face ((t (:slant italic :foreground "slate gray" :inherit variable-pitch))))
18 18 '(font-lock-constant-face ((t (:foreground "dark cyan"))))
@@ -26,46 +26,58 @@
26 26 '(font-lock-type-face ((t (:foreground "ForestGreen"))))
27 27 '(font-lock-variable-name-face ((t (:foreground "sienna"))))
28 28 '(font-lock-warning-face ((t (:inherit (error)))))
29 Removed: '(link-visited ((t (:foreground "magenta4" :inherit (link)))))
30 29 '(fringe ((t (:background "grey95"))))
31 30 '(header-line ((t (:box nil :foreground "grey20" :background "grey90" :inherit (mode-line)))))
32 31 '(tooltip ((t (:foreground "black" :background "lightyellow" :inherit (variable-pitch)))))
33 32 '(mode-line ((t (:box (:line-width -1 :color nil :style released-button) :foreground "black" :background "grey75"))))
34 33 '(mode-line-buffer-id ((t (:weight bold))))
35 34 '(mode-line-emphasis ((t (:weight bold))))
36 Removed: '(mode-line-highlight ((((class color) (min-colors 88)) (:box (:line-width 2 :color "grey40" :style released-button))) (t (:inherit (highlight)))))
35 Added: '(mode-line-highlight ((t (:box (:line-width 2 :color "grey40" :style released-button)))))
37 36 '(mode-line-inactive ((t (:weight light :box (:line-width -1 :color "grey75" :style nil) :foreground "grey20" :background "grey90" :inherit (mode-line)))))
38 Removed: '(isearch ((((class color) (min-colors 88) (background light)) (:foreground "lightskyblue1" :background "magenta3")) (((class color) (min-colors 88) (background dark)) (:foreground "brown4" :background "palevioletred2")) (((class color) (min-colors 16)) (:foreground "cyan1" :background "magenta4")) (((class color) (min-colors 8)) (:foreground "cyan1" :background "magenta4")) (t (:inverse-video t))))
39 Removed: '(isearch-fail ((((class color) (min-colors 88) (background light)) (:background "RosyBrown1")) (((class color) (min-colors 88) (background dark)) (:background "red4")) (((class color) (min-colors 16)) (:background "red")) (((class color) (min-colors 8)) (:background "red")) (((class color grayscale)) (:foreground "grey")) (t (:inverse-video t))))
40 Removed: '(lazy-highlight ((t (:background "paleturquoise"))))
41 Removed: '(match ((((class color) (min-colors 88) (background light)) (:background "yellow1")) (((class color) (min-colors 88) (background dark)) (:background "RoyalBlue3")) (((class color) (min-colors 8) (background light)) (:foreground "black" :background "yellow")) (((class color) (min-colors 8) (background dark)) (:foreground "white" :background "blue")) (((type tty) (class mono)) (:inverse-video t)) (t (:background "gray"))))
37 Added: '(isearch ((t (:background "DodgerBlue1" :foreground "white"))))
38 Added: '(isearch-fail ((t (:background "RosyBrown1"))))
39 Added: '(lazy-highlight ((t (:foreground "DodgerBlue1" :box 2))))
40 Added: '(match ((t (:background "yellow1"))))
42 41 '(next-error ((t (:inherit region))))
43 42 '(query-replace ((t (:inherit (isearch)))))
44 43 '(org-formula ((t (:inherit org-table))))
45 Removed: '(org-meta-line ((t (:foreground "DodgerBlue3" :family "Hermit"))))
44 Added: '(org-meta-line ((t (:foreground "blue violet" :family "Hermit"))))
46 45 '(org-document-title ((t (:width normal :height 2.0 :weight bold :slant normal :underline nil :inherit default))))
47 Removed: '(org-level-1 ((t (:weight bold :height 1.6 :inherit fixed-pitch))))
48 Removed: '(org-level-2 ((t (:weight bold :height 1.4 :inherit fixed-pitch))))
49 Removed: '(org-level-3 ((t (:height 1.2 :weight bold :inherit fixed-pitch))))
50 Removed: '(org-level-4 ((t (:height 1.1 :weight bold :inherit fixed-pitch))))
51 Removed: '(org-date ((t (:inherit link :foreground "DodgerBlue3" :slant italic :family "Liberation Serif"))))
52 46 '(org-footnote ((t (:foreground "DodgerBlue3" :inherit link))))
53 Removed: '(org-tag ((t (:inherit link :weight bold :foreground "DodgerBlue3"))))
54 Removed: '(link ((t (:foreground "blue" :underline t))))
47 Added: '(org-tag ((t (:foreground "Purple" :weight bold :family "Hermit"))))
55 48 '(org-document-info-keyword ((t (:inherit org-meta-line))))
56 Removed: '(dashboard-heading ((t (:inherit font-lock-keyword-face))))
57 Removed: '(org-todo ((t (:foreground "Red1" :box 2 :weight bold))))
58 Removed: '(org-done ((t (:foreground "ForestGreen" :box 2 :weight bold))))
59 49 '(org-code ((t (:background "light grey" :foreground "black"))))
60 Removed: '(org-checkbox-statistics-todo ((t (:inherit org-todo :box nil))))
61 Removed: '(org-checkbox-statistics-done ((t (:inherit org-done :box nil))))
50 Added: '(org-checkbox-statistics-todo ((t (:inherit org-meta-line :foreground "Red"))))
51 Added: '(org-checkbox-statistics-done ((t (:inherit org-meta-line :foreground "ForestGreen"))))
62 52 '(org-verbatim ((t (:inherit shadow))))
63 Removed: '(font-lock-doc-face ((t (:inherit font-lock-string-face))))
53 Added: '(font-lock-doc-face ((t (:Family "Liberation Sans" :inherit font-lock-string-face))))
64 54 '(cursor ((t (:background "red"))))
65 Removed: '(org-document-info ((t (:weight bold :inherit variable-pitch))))
55 Added: '(org-document-info ((t (:inherit variable-pitch))))
66 56 '(fixed-pitch ((t (:family "Hack"))))
67 Removed: '(org-table ((t (:box (:line-width 1 :color "light slate gray") :foreground "dark slate gray" :inherit fixed-pitch))))
57 Added: '(org-table ((t (:inherit fixed-pitch :foreground "dark slate gray" :box (:line-width 1 :color "light slate gray")))))
68 58 '(org-block ((t (:family "Hermit"))))
69 Removed: '(default ((t (:background "white" :foreground "black" :height 120 :family "Hermit")))))
59 Added: '(org-special-keyword ((t (:inherit org-meta-line))))
60 Added: '(org-level-1 ((t (:height 1.6 :weight bold :inherit org-document-info :foreground "DodgerBlue4"))))
61 Added: '(org-level-2 ((t (:height 1.4 :inherit org-document-info :weight bold :foreground "DodgerBlue3"))))
62 Added: '(org-level-3 ((t (:foreground "DodgerBlue2" :height 1.2 :weight bold :inherit org-document-info))))
63 Added: '(org-level-4 ((t (:height 1.1 :inherit org-document-info :weight bold :foreground "DodgerBlue1"))))
64 Added: '(org-level-5 ((t (:inherit org-document-info :weight bold :height 1.0 :foreground "DodgerBlue1"))))
65 Added: '(org-level-6 ((t (:inherit org-level-5))))
66 Added: '(org-level-7 ((t (:inherit org-level-5))))
67 Added: '(org-level-8 ((t (:inherit org-level-5))))
68 Added: '(org-checkbox ((t (:box nil :weight bold))))
69 Added: '(org-todo ((t (:foreground "Red" :box 2 :weight bold))))
70 Added: '(org-done ((t (:foreground "ForestGreen" :box 2 :weight bold))))
71 Added: '(org-date ((t (:inherit org-tag :weight bold))))
72 Added: '(swiper-match-face-1 ((t (:inherit lazy-highlight))))
73 Added: '(swiper-match-face-2 ((t (:inherit (isearch)))))
74 Added: '(swiper-match-face-4 ((t (:inherit isearch))))
75 Added: '(swiper-match-face-3 ((t (:inherit isearch))))
76 Added: '(ivy-minibuffer-match-face-1 ((t (:inherit lazy-highlight))))
77 Added: '(ivy-minibuffer-match-face-2 ((t (:inherit isearch))))
78 Added: '(ivy-minibuffer-match-face-3 ((t (:inherit lazy-highlight))))
79 Added: '(ivy-minibuffer-match-face-4 ((t (:inherit isearch))))
80 Added: '(ivy-minibuffer-match-highlight ((t (:inherit (highlight)))))
81 Added: '(default ((t (:background "white" :foreground "black" :height 120 :family "Hack")))))
70 82
71 83 (provide-theme 'blendoit-light)
init-custom.el
index 934a04d6..ba591754 100644..100644
@@ -14,11 +14,10 @@
14 14 '(company-quickhelp-color-background "#4F4F4F")
15 15 '(company-quickhelp-color-foreground "#DCDCCC")
16 16 '(cua-mode t nil (cua-base))
17 Removed: '(cursor-type (quote box))
17 Added: '(cursor-type 'bar)
18 18 '(custom-enabled-themes nil)
19 19 '(custom-safe-themes
20 Removed: (quote
21 Removed: ("5905eb65478e7ae1ac993502481f8f3352d2c65f5c07930f901563d8dd7ab1dc" "3e4255b87df3114cb13315044d5bb5e91f53de4cdd64923f27e6eb6cc653dfb7" "8aa395f600d8957d85cf6de4eeb185aa08f87bc2186b8e3759c771b8731e51be" "653a2633bcfb22c7977c82420c39993bc797687bdeb8d842d28c1ed135874560" "351d80f016f726b9cd27ee79e636ee13e54bd6eb798c25bb33b114c7bbc38f66" "85781ac6bf70cb94379643b8ba3cb27ac5ffcc22842adcaae5ed64d54b91ce97" "d7ece026ead3a816996f4461c1bae8d9103e721777ed9debae2a43f5dfccb422" "5e39e3abf1b40630b886917e0aa26b34ad100b8f838d326f809053e7ac9cf1f0" "3b8d0b86c59b23202e7b3fe89ffdcdaab08871801aeb26022a6fea2926f29d65" "073f9f5ff9eadf602b83443a845067aea4323e474b7b4bb6fc1576c25bcdd5c3" "b954c5869a887bc9ef43dc5a85bb8c8603110eebddff08c4aa02d5a7f91ff03d" "95f9ae541265ff365afe5ef541cb7f368ac307b4c1f31d9ae6b0bad72ad38b66" "f6abee55f89679db94f5d819a000dcb957d2bb10097bf9d9c13b49f526c56aaf" "f25ac98a3f3a864dbd9055e52cd9b9372f9c25a1a0df0115f2f878d6d333c5a6" "1009a1caad8d054da999e6ee9d16aee3d793384a6baabc2576241724774d0322" "c5091f06090343124a99641f20f1568e30c077564d80a6ca56571b904c04010b" "286398d1be769c865473b94e83012423577c36fe5898308a56b15e1daccf96ea" "4ccd088b7b96c006c4cbcb47e87d6995e633d86eaf1edcc3eb3836d6ef0d0c96" "9c5262b007959013e7eb270ca136d68632963896269cb33b8ddf65678737a8c6" "6b16bb9a683713d4298a003fab718ba6619927558e05a500a2d1846201547ffa" "c8a7eb47263f0d2efb76b98a4d923ef50a563c300d2ae354cbea693f74523e8e" "c5f0718491c897f14f827dbb4076b64d18ef80c5303635b62b3e5fdf5eae27ec" "50f02bc9f6e48be88485985b0820318b124edd5609aff1663e602bc4a9648e8b" "67a1cc0bb3073bdc4b40116371c8d9568d9c85fb61ebcd439964bd86a3f7541f" "61a9f73cd7959c7c10c0587f6c9f6a606c9635c6e350cc725ac916f0c2be4e04" "f1fbfdf754abcb5750dab511234b09c032ce27d4fb9fd9ccadf1f6513f0a302f" "a8481da2702722465d02eb2e2fa64346efea54b56fca021b3a4bb08a2a6924d3" "6264d1df6969ac03691d2d2cf97ea094f18cef56aadf8bd7a49c5544fde875f0" "c00103d5b31a23fc69b34dfaa53f07b5cbf99140ba80b1c33a6cf591d852ac69" "92d2a65936bd89f546493d6b39cff290f07d6590e88bf783e49be344b26e2295" "3d9f10204f74e105d0f8740eeb8de0b12f0cae6a6ae05cbd09f8755dcf684a89" default)))
20 Added: '("618973af16801ffd749afebbf8f2c8180fa9b7d295fd89505d1a3e21ebc4c199" "ba6fe375dbaeaf48e6b9c12bcf37b0919263406ccb13af38ef5ac78f289f4cf8" "6239d664331a316ff4fa0d5ec146250ab1a92c111c4b9484b94f4a901bd8c6c6" "197336a0ab2629ea10e5b8a7ca760186998bcaddb1df2b2c481a9a6e4efd0672" "469b1e88e25d070178650e330a4ebd2c6e3cc4621ea317c2255bca55ba6bfcf7" "be1230bf91ef156bd9914a5da9d64a9b4495faf9bc5e4e764791859581b4f2dc" "a634f6511a7f13aa0d2442dccd3f092e61bf0034447617f738c67e5ec8bc76c6" "fdf966f3cefb64d1b53036bb9eae98191734e94ee20767f0e6d248e10367a042" "88233d6ef424d0aed637b3ae12ae5c4718f06a937cac39a805f2a97dafd0b2bd" "6d21b2932725e3581fa4991402e8c24901614e2d1be432c6ce9f3de98059d034" "d644e76022e89c2f71ec5b1bbd5fa44330674b63054145ae389959fc43760de5" "23bcc7d0f92a7839e5857a645f9ac80ed79bce6ceae338a273339221f2c0eee3" "5b008d618c92a8d77debb928ef648bfb1350cb0839bbe82b1452d31987129bb9" "816693b20d322c628b8f79a08c91b7bf4d268f76beefbd608ebe58ebfa63bd62" "09f7e4a2e27bbb99757e78450ce78224294de142b5ad7a165e6b5fcd9af8e053" "320b7f18a0cd107684c5fe83468a9bbfcd9bfc0524b787b24e70fed338ebba48" "c32f5a4de4f87fee7f6bc714fcf146706e415320eb9dd2907d0edb3ab69faf0a" "b01e74cac6f312ab2fe6d8066f7cfb3d545a927b117e7cc53b192005cb04819e" "22366449c1933d9017679eb8d4265b3698b8459645618ac516eb1d9a509a5100" "6120047a082b82cba7759b57dbf77f635d16efd14c39ef53e84c1570916760c3" "1681d0164dd8cc5865de07e22d7c9b117aac84cbbee1cfc897c817b0dd329810" "f920fd74d8d90736e13c570ada1a761bfc76b792b660ac38948de5216421bf16" "acf50bc8b876556e34fe46bb282c4d81213f25da6ff99d8acd61ce6587a6fe00" "c7c1480dd97b3455efed608bcd3a07d82b938873c81211449f066f0c575ca5d4" "3f5051af32aa51e82d0a16c4bd9f8cea2e375732cc15f71b0c24f3c5acdc1f77" "e4d85ebd1bbf66b3fb3dc1041f2e59310b1acc134ba389c479b369b403cb47ae" "2979fa4f6be237521d789f1ccabdf78357d31bc015c4eecb0a56a46b7e5f76b2" "56169cef70f421123f9a94925e769fdabd2623917e1094d101ed27183255aa2c" "cb2bbbd371f93845e6c9e340a9f1de4a90bd3ea6d7ad834c1de16032830677d6" "f1b01bd088cfca8c4d153374940462771a80717c3d0f8c84da08f6d3d4ecf506" "26fed31eecc4571079d3adf4b17e39ba5078c5905f4a430d50cb0ee3d049e60f" "4662608f90dd9281f6c41f85cf2a18e92da88209d0ea6143eb851a422cf15d0e" "12ca380d0ebc2db6ca04d2c5ee0f1e17b17b44be4d0e39028b33ba1ef096ddf1" "33eafe92e663ab754f0c18f3aa35d44f90de5e45866a4e3dbedc9275c18a37b0" "ea3295557000d404db1c5b7ed28dbff111e1f6a895dad21df02619a5184cfad2" "a0dbaefbe0cc11ec26e44c2a85e86f69a389f514ca9e889a7e09c9e465adcbd0" "39ee0b1c8a650a34ab9ea56bba6f2791c61e08a7493a36241c04011896d208c7" "225754abbbab151563676a6932f6a30d85a146956b1d177f30acda0f6fa9edb5" "9f5e773e2e6f801143c3c45835f955e183e7a0ed913b67a9eb614c14a3a4ccc9" "368c0ca8c5b88e3d19c0c5e8de822934b7e18be792bd1b58112aa064dbcebaa7" "b4b9bd3e022c836c9cfd362da607a20eee5bb6d44b82e6da95fc6d0bbcb042f7" "244dca9b16c86f111de53d9630c7825574efe713b0d8f2cc52da1ccf6f373d87" "316c25dff649ae0230b8e04b26553a044b7ce7e15117aec45e1be5fa3cdb081d" "5c6b743494ddeffee6d79f776c39a3e6480d685dfef225e9cfcf6c1b7c88c322" "9f1b910295c248933e71176b79b3d27362d90700b95f28dc4701266605fdff2e" "976ef4086ddfafc99e74e1db6e7d93fca659cad5596f591a323fad2e2a27db59" "625ffa8fd77bd02ca8293aadd83ce25227e343976c87636b60b3e9fe291f423a" "c60907e8774c9fc0122b2dd3fa891b27c7fd01168d50f3f758bc226b3525ac7f" "ea44aa4ffe4cbbaa5ac6acb17ef247fccc2b4d5b8658f9714bfde2d91190542b" "ba745b626a5fe6b79c20a81d8c1b1c18b773836351387f778804ac7da1034494" "34913ce417d47ef561e3b9a5aa16c64843357c743cf217933c414ca7851c0df0" "cc27e2708a9d1736d3ebcc23496a5a74e964f3841deb66462d3e313229ebffad" "803873868125a64fe074e4cd27c7460216723df3018c54ae5aeeb8f564d21a35" "5e52fc8de36914cd89202c9eb7177d2ef3b7cec9ed8660a3a22c38fe5d457e9e" "e887eb20e1701944f697df7e00ff413b7c707a71a84b9281be37d9a894d33b5e" "018c02d3b059e6d1bd0d68c06d6448503cf7e0d6a93424f10f62221f99e4c5fd" "60aabe3167c59e66d005a648dd90fffcb0628137f72e9011834f379803d278eb" "4775ab624ed6e3a405f239c0b1b3adff2aa6fcbc401e050907293589dc0c42fc" "fd608fe9c9ddc684275baffcb8b8e1a250351ddeac80c35d9f35db35d723a299" "8aa395f600d8957d85cf6de4eeb185aa08f87bc2186b8e3759c771b8731e51be" "653a2633bcfb22c7977c82420c39993bc797687bdeb8d842d28c1ed135874560" "351d80f016f726b9cd27ee79e636ee13e54bd6eb798c25bb33b114c7bbc38f66" "85781ac6bf70cb94379643b8ba3cb27ac5ffcc22842adcaae5ed64d54b91ce97" "d7ece026ead3a816996f4461c1bae8d9103e721777ed9debae2a43f5dfccb422" "5e39e3abf1b40630b886917e0aa26b34ad100b8f838d326f809053e7ac9cf1f0" "3b8d0b86c59b23202e7b3fe89ffdcdaab08871801aeb26022a6fea2926f29d65" "073f9f5ff9eadf602b83443a845067aea4323e474b7b4bb6fc1576c25bcdd5c3" "b954c5869a887bc9ef43dc5a85bb8c8603110eebddff08c4aa02d5a7f91ff03d" "95f9ae541265ff365afe5ef541cb7f368ac307b4c1f31d9ae6b0bad72ad38b66" "f6abee55f89679db94f5d819a000dcb957d2bb10097bf9d9c13b49f526c56aaf" "f25ac98a3f3a864dbd9055e52cd9b9372f9c25a1a0df0115f2f878d6d333c5a6" "1009a1caad8d054da999e6ee9d16aee3d793384a6baabc2576241724774d0322" "c5091f06090343124a99641f20f1568e30c077564d80a6ca56571b904c04010b" "286398d1be769c865473b94e83012423577c36fe5898308a56b15e1daccf96ea" "4ccd088b7b96c006c4cbcb47e87d6995e633d86eaf1edcc3eb3836d6ef0d0c96" "9c5262b007959013e7eb270ca136d68632963896269cb33b8ddf65678737a8c6" "6b16bb9a683713d4298a003fab718ba6619927558e05a500a2d1846201547ffa" "c8a7eb47263f0d2efb76b98a4d923ef50a563c300d2ae354cbea693f74523e8e" "c5f0718491c897f14f827dbb4076b64d18ef80c5303635b62b3e5fdf5eae27ec" "50f02bc9f6e48be88485985b0820318b124edd5609aff1663e602bc4a9648e8b" "67a1cc0bb3073bdc4b40116371c8d9568d9c85fb61ebcd439964bd86a3f7541f" "61a9f73cd7959c7c10c0587f6c9f6a606c9635c6e350cc725ac916f0c2be4e04" "f1fbfdf754abcb5750dab511234b09c032ce27d4fb9fd9ccadf1f6513f0a302f" "a8481da2702722465d02eb2e2fa64346efea54b56fca021b3a4bb08a2a6924d3" "6264d1df6969ac03691d2d2cf97ea094f18cef56aadf8bd7a49c5544fde875f0" "c00103d5b31a23fc69b34dfaa53f07b5cbf99140ba80b1c33a6cf591d852ac69" "92d2a65936bd89f546493d6b39cff290f07d6590e88bf783e49be344b26e2295" "3d9f10204f74e105d0f8740eeb8de0b12f0cae6a6ae05cbd09f8755dcf684a89" default))
22 21 '(custom-theme-directory "~/.emacs.d/blendoit/themes/")
23 22 '(fci-rule-color "#383838")
24 23 '(fill-column 79)
@@ -26,37 +25,36 @@
26 25 '(ibuffer-sidebar-display-summary t)
27 26 '(ibuffer-sidebar-width 18)
28 27 '(ledger-reports
29 Removed: (quote
30 Removed: (("bal" "%(binary) -f %(ledger-file) bal")
28 Added: '(("bal" "%(binary) -f %(ledger-file) bal")
31 29 ("bal-USD" "%(binary) -f %(ledger-file) bal --exchange USD")
32 30 ("reg" "%(binary) -f %(ledger-file) reg")
33 31 ("net-worth" "%(binary) -f %(ledger-file) bal ^Assets ^Liabilities --exchange USD")
34 32 ("net-income" "%(binary) -f %(ledger-file) bal ^Income ^Expenses --exchange USD --depth 2 --invert")
35 33 ("payee" "%(binary) -f %(ledger-file) reg @%(payee)")
36 34 ("account" "%(binary) -f %(ledger-file) reg %(account)")
37 Removed: ("budget" "%(binary) -f %(ledger-file) budget --exchange USD"))))
35 Added: ("budget" "%(binary) -f %(ledger-file) budget --exchange USD")))
38 36 '(line-number-mode nil)
39 Removed: '(message-required-headers (quote ((optional . References) From)))
37 Added: '(message-required-headers '((optional . References) From))
38 Added: '(mixed-pitch-fixed-pitch-faces
39 Added: '(diff-added diff-context diff-file-header diff-function diff-header diff-hunk-header diff-removed font-latex-math-face font-latex-sedate-face font-latex-warning-face font-latex-sectioning-5-face font-lock-builtin-face font-lock-comment-delimiter-face font-lock-constant-face font-lock-doc-face font-lock-function-name-face font-lock-keyword-face font-lock-negation-char-face font-lock-preprocessor-face font-lock-regexp-grouping-backslash font-lock-regexp-grouping-construct font-lock-string-face font-lock-type-face font-lock-variable-name-face markdown-code-face markdown-gfm-checkbox-face markdown-inline-code-face markdown-language-info-face markdown-language-keyword-face markdown-math-face message-header-name message-header-to message-header-cc message-header-newsgroups message-header-xheader message-header-subject message-header-other mu4e-header-key-face mu4e-header-value-face mu4e-link-face mu4e-contact-face mu4e-compose-separator-face mu4e-compose-header-face org-block-begin-line org-block-end-line org-document-info-keyword org-code org-indent org-latex-and-related org-checkbox org-formula org-meta-line org-table org-verbatim))
40 40 '(nrepl-message-colors
41 Removed: (quote
42 Removed: ("#CC9393" "#DFAF8F" "#F0DFAF" "#7F9F7F" "#BFEBBF" "#93E0E3" "#94BFF3" "#DC8CC3")))
41 Added: '("#CC9393" "#DFAF8F" "#F0DFAF" "#7F9F7F" "#BFEBBF" "#93E0E3" "#94BFF3" "#DC8CC3"))
43 42 '(org-agenda-diary-file "~/org/PERSONAL/diary/diary.org")
44 Removed: '(org-agenda-files (quote ("~/org/PERSONAL/diary/diary.org")))
43 Added: '(org-agenda-files
44 Added: '("c:/Users/marius.peter/Documents/MA700/timeline/MA700-timeline.org" "~/org/PERSONAL/diary/diary.org"))
45 45 '(org-agenda-include-diary t)
46 Removed: '(org-agenda-insert-diary-strategy (quote date-tree-last))
47 Removed: '(org-agenda-skip-scheduled-if-deadline-is-shown (quote not-today))
46 Added: '(org-agenda-insert-diary-strategy 'date-tree-last)
47 Added: '(org-agenda-skip-scheduled-if-deadline-is-shown 'not-today)
48 48 '(org-babel-load-languages
49 Removed: (quote
50 Removed: ((shell . t)
49 Added: '((shell . t)
51 50 (python . t)
52 51 (plantuml . t)
53 52 (emacs-lisp . t)
54 53 (awk . t)
55 54 (ledger . t)
56 Removed: (gnuplot . t))))
55 Added: (gnuplot . t)))
57 56 '(org-latex-classes
58 Removed: (quote
59 Removed: (("article" "\\documentclass[11pt]{article}"
57 Added: '(("article" "\\documentclass[11pt]{article}"
60 58 ("\\section{%s}" . "\\section*{%s}")
61 59 ("\\subsection{%s}" . "\\subsection*{%s}")
62 60 ("\\subsubsection{%s}" . "\\subsubsection*{%s}")
@@ -78,33 +76,29 @@
78 76 ("\\chapter{%s}" . "\\chapter*{%s}")
79 77 ("\\section{%s}" . "\\section*{%s}")
80 78 ("\\subsection*{%s}" . "\\subsection*{%s}")
81 Removed: ("\\subsubsection*{%s}" . "\\subsubsection*{%s}")))))
79 Added: ("\\subsubsection*{%s}" . "\\subsubsection*{%s}"))))
82 80 '(org-latex-packages-alist
83 Removed: (quote
84 Removed: (("AUTO" "polyglossia" t
81 Added: '(("AUTO" "polyglossia" t
85 82 ("xelatex" "lualatex"))
86 83 ("AUTO" "babel" t
87 84 ("pdflatex"))
88 85 ("table,dvipsnames" "xcolor" t
89 Removed: ("pdflatex")))))
86 Added: ("pdflatex"))))
90 87 '(org-latex-pdf-process
91 Removed: (quote
92 Removed: ("latexmk -pdf -f -interaction=nonstopmode -pdflatex=\"%latex\" -outdir=%o %f")))
88 Added: '("latexmk -pdf -f -interaction=nonstopmode -pdflatex=\"%latex\" -outdir=%o %f"))
93 89 '(org-latex-toc-command "\\tableofcontents\\clearpage")
94 90 '(org-startup-align-all-tables t)
95 91 '(package-selected-packages
96 Removed: (quote
97 Removed: (awesome-tab tabbar-ruler tabbar-mode linum-relative dumb-jump csv-mode rainbow-mode org-mouse projectile minimap gnuplot ledger-mode company-mode wombat-theme wombar-theme 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)))
98 Removed: '(pdf-view-midnight-colors (quote ("#DCDCCC" . "#383838")))
92 Added: '(awesome-tab tabbar-ruler tabbar-mode linum-relative dumb-jump csv-mode rainbow-mode org-mouse projectile minimap gnuplot ledger-mode company-mode wombat-theme wombar-theme 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))
93 Added: '(pdf-view-midnight-colors '("#DCDCCC" . "#383838"))
99 94 '(save-place-mode t)
100 Removed: '(send-mail-function (quote smtpmail-send-it))
95 Added: '(send-mail-function 'smtpmail-send-it)
101 96 '(show-paren-mode t)
102 97 '(smtpmail-smtp-server "smtp.gmail.com")
103 98 '(smtpmail-smtp-service 587)
104 99 '(vc-annotate-background "#2B2B2B")
105 100 '(vc-annotate-color-map
106 Removed: (quote
107 Removed: ((20 . "#BC8383")
101 Added: '((20 . "#BC8383")
108 102 (40 . "#CC9393")
109 103 (60 . "#DFAF8F")
110 104 (80 . "#D0BF8F")
@@ -121,7 +115,7 @@
121 115 (300 . "#7CB8BB")
122 116 (320 . "#8CD0D3")
123 117 (340 . "#94BFF3")
124 Removed: (360 . "#DC8CC3"))))
118 Added: (360 . "#DC8CC3")))
125 119 '(vc-annotate-very-old-color "#DC8CC3")
126 120 '(window-divider-default-places t))
127 121 (custom-set-faces
@@ -129,4 +123,4 @@
129 123 ;; If you edit it by hand, you could mess it up, so be careful.
130 124 ;; Your init file should contain only one such instance.
131 125 ;; If there is more than one, they won't work right.
132 Removed: '(default ((t (:family "Hack" :slant normal :weight normal :height 122 :width normal)))))
126 Added: )