[Emacs Lisp] Personal ~/.emacs.d/ configuration folder.
DOS file coding system.
Changed files
.gitignore
@@ -1,30 +1,30 @@
1
Removed:
# .gitignore
2
Removed:
3
Removed:
*.elc
4
Removed:
5
Removed:
# Backups
6
Removed:
bkp/
7
Removed:
8
Removed:
# TeX artifacts
9
Removed:
*.tex
10
Removed:
*.lot
11
Removed:
*.lof
12
Removed:
13
Removed:
# These directories are populated on config execution.
14
Removed:
elpa/**
15
Removed:
url/**
16
Removed:
auto-save-list/**
17
Removed:
transient/**
18
Removed:
19
Removed:
# Tangled .el files from .org
20
Removed:
blendoit/*.el
21
Removed:
22
Removed:
# Misc
23
Removed:
*.eld
24
Removed:
ido.last
25
Removed:
recentf
26
Removed:
srecode-map.el
27
Removed:
.org-id-locations
28
Removed:
network-security.data
29
Removed:
places
30
Removed:
projectile.cache
1
Added:
# .gitignore
2
Added:
3
Added:
*.elc
4
Added:
5
Added:
# Backups
6
Added:
bkp/
7
Added:
8
Added:
# TeX artifacts
9
Added:
*.tex
10
Added:
*.lot
11
Added:
*.lof
12
Added:
13
Added:
# These directories are populated on config execution.
14
Added:
elpa/**
15
Added:
url/**
16
Added:
auto-save-list/**
17
Added:
transient/**
18
Added:
19
Added:
# Tangled .el files from .org
20
Added:
blendoit/*.el
21
Added:
22
Added:
# Misc
23
Added:
*.eld
24
Added:
ido.last
25
Added:
recentf
26
Added:
srecode-map.el
27
Added:
.org-id-locations
28
Added:
network-security.data
29
Added:
places
30
Added:
projectile.cache
blendoit/themes/blendoit-light-theme.el
@@ -1,83 +1,83 @@
1
Removed:
(deftheme blendoit-light
2
Removed:
"Created 2020-08-14.")
3
Removed:
4
Removed:
(custom-theme-set-faces
5
Removed:
'blendoit-light
6
Removed:
'(variable-pitch ((t (:family "Liberation Sans"))))
7
Removed:
'(escape-glyph ((((background dark)) (:foreground "cyan")) (((type pc)) (:foreground "magenta")) (t (:foreground "brown"))))
8
Removed:
'(homoglyph ((((background dark)) (:foreground "cyan")) (((type pc)) (:foreground "magenta")) (t (:foreground "brown"))))
9
Removed:
'(minibuffer-prompt ((t (:foreground "purple" :family "Hermit"))))
10
Removed:
'(highlight ((t (:background "light sky blue" :foreground "white"))))
11
Removed:
'(region ((t (:background "light gray"))))
12
Removed:
'(shadow ((t (:foreground "dark slate gray"))))
13
Removed:
'(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
Removed:
'(trailing-whitespace ((((class color) (background light)) (:background "red1")) (((class color) (background dark)) (:background "red1")) (t (:inverse-video t))))
15
Removed:
'(font-lock-builtin-face ((t (:foreground "dark slate blue"))))
16
Removed:
'(font-lock-comment-delimiter-face ((t (:foreground "dim gray" :inherit font-lock-comment-face))))
17
Removed:
'(font-lock-comment-face ((t (:slant italic :foreground "slate gray" :inherit variable-pitch))))
18
Removed:
'(font-lock-constant-face ((t (:foreground "dark cyan"))))
19
Removed:
'(font-lock-function-name-face ((((class color) (min-colors 88) (background light)) (:foreground "Blue1")) (((class color) (min-colors 88) (background dark)) (:foreground "LightSkyBlue")) (((class color) (min-colors 16) (background light)) (:foreground "Blue")) (((class color) (min-colors 16) (background dark)) (:foreground "LightSkyBlue")) (((class color) (min-colors 8)) (:weight bold :foreground "blue")) (t (:weight bold :inverse-video t))))
20
Removed:
'(font-lock-keyword-face ((t (:foreground "DodgerBlue4"))))
21
Removed:
'(font-lock-negation-char-face ((t nil)))
22
Removed:
'(font-lock-preprocessor-face ((t (:inherit (font-lock-builtin-face)))))
23
Removed:
'(font-lock-regexp-grouping-backslash ((t (:inherit (bold)))))
24
Removed:
'(font-lock-regexp-grouping-construct ((t (:inherit (bold)))))
25
Removed:
'(font-lock-string-face ((t (:foreground "DodgerBlue1"))))
26
Removed:
'(font-lock-type-face ((t (:foreground "ForestGreen"))))
27
Removed:
'(font-lock-variable-name-face ((t (:foreground "sienna"))))
28
Removed:
'(font-lock-warning-face ((t (:inherit (error)))))
29
Removed:
'(fringe ((t (:background "grey95"))))
30
Removed:
'(header-line ((t (:box nil :foreground "grey20" :background "grey90" :inherit (mode-line)))))
31
Removed:
'(tooltip ((t (:foreground "black" :background "lightyellow" :inherit (variable-pitch)))))
32
Removed:
'(mode-line ((t (:box (:line-width -1 :color nil :style released-button) :foreground "black" :background "grey75"))))
33
Removed:
'(mode-line-buffer-id ((t (:weight bold))))
34
Removed:
'(mode-line-emphasis ((t (:weight bold))))
35
Removed:
'(mode-line-highlight ((t (:box (:line-width 2 :color "grey40" :style released-button)))))
36
Removed:
'(mode-line-inactive ((t (:weight light :box (:line-width -1 :color "grey75" :style nil) :foreground "grey20" :background "grey90" :inherit (mode-line)))))
37
Removed:
'(isearch ((t (:background "DodgerBlue1" :foreground "white"))))
38
Removed:
'(isearch-fail ((t (:background "RosyBrown1"))))
39
Removed:
'(lazy-highlight ((t (:foreground "DodgerBlue1" :box 2))))
40
Removed:
'(match ((t (:background "yellow1"))))
41
Removed:
'(next-error ((t (:inherit region))))
42
Removed:
'(query-replace ((t (:inherit (isearch)))))
43
Removed:
'(org-formula ((t (:inherit org-table))))
44
Removed:
'(org-meta-line ((t (:foreground "blue violet" :family "Hermit"))))
45
Removed:
'(org-document-title ((t (:width normal :height 2.0 :weight bold :slant normal :underline nil :inherit default))))
46
Removed:
'(org-footnote ((t (:foreground "DodgerBlue3" :inherit link))))
47
Removed:
'(org-tag ((t (:foreground "Purple" :weight bold :family "Hermit"))))
48
Removed:
'(org-document-info-keyword ((t (:inherit org-meta-line))))
49
Removed:
'(org-code ((t (:background "light grey" :foreground "black"))))
50
Removed:
'(org-checkbox-statistics-todo ((t (:inherit org-meta-line :foreground "Red"))))
51
Removed:
'(org-checkbox-statistics-done ((t (:inherit org-meta-line :foreground "ForestGreen"))))
52
Removed:
'(org-verbatim ((t (:inherit shadow))))
53
Removed:
'(font-lock-doc-face ((t (:Family "Liberation Sans" :inherit font-lock-string-face))))
54
Removed:
'(cursor ((t (:background "red"))))
55
Removed:
'(org-document-info ((t (:inherit variable-pitch))))
56
Removed:
'(fixed-pitch ((t (:family "Hack"))))
57
Removed:
'(org-table ((t (:inherit fixed-pitch :foreground "dark slate gray" :box (:line-width 1 :color "light slate gray")))))
58
Removed:
'(org-block ((t (:family "Hermit"))))
59
Removed:
'(org-special-keyword ((t (:inherit org-meta-line))))
60
Removed:
'(org-level-1 ((t (:height 1.6 :weight bold :inherit org-document-info :foreground "DodgerBlue4"))))
61
Removed:
'(org-level-2 ((t (:height 1.4 :inherit org-document-info :weight bold :foreground "DodgerBlue3"))))
62
Removed:
'(org-level-3 ((t (:foreground "DodgerBlue2" :height 1.2 :weight bold :inherit org-document-info))))
63
Removed:
'(org-level-4 ((t (:height 1.1 :inherit org-document-info :weight bold :foreground "DodgerBlue1"))))
64
Removed:
'(org-level-5 ((t (:inherit org-document-info :weight bold :height 1.0 :foreground "DodgerBlue1"))))
65
Removed:
'(org-level-6 ((t (:inherit org-level-5))))
66
Removed:
'(org-level-7 ((t (:inherit org-level-5))))
67
Removed:
'(org-level-8 ((t (:inherit org-level-5))))
68
Removed:
'(org-checkbox ((t (:box nil :weight bold))))
69
Removed:
'(org-todo ((t (:foreground "Red" :box 2 :weight bold))))
70
Removed:
'(org-done ((t (:foreground "ForestGreen" :box 2 :weight bold))))
71
Removed:
'(org-date ((t (:inherit org-tag :weight bold))))
72
Removed:
'(swiper-match-face-1 ((t (:inherit lazy-highlight))))
73
Removed:
'(swiper-match-face-2 ((t (:inherit (isearch)))))
74
Removed:
'(swiper-match-face-4 ((t (:inherit isearch))))
75
Removed:
'(swiper-match-face-3 ((t (:inherit isearch))))
76
Removed:
'(ivy-minibuffer-match-face-1 ((t (:inherit lazy-highlight))))
77
Removed:
'(ivy-minibuffer-match-face-2 ((t (:inherit isearch))))
78
Removed:
'(ivy-minibuffer-match-face-3 ((t (:inherit lazy-highlight))))
79
Removed:
'(ivy-minibuffer-match-face-4 ((t (:inherit isearch))))
80
Removed:
'(ivy-minibuffer-match-highlight ((t (:inherit (highlight)))))
81
Removed:
'(default ((t (:background "white" :foreground "black" :height 120 :family "Hack")))))
82
Removed:
83
Removed:
(provide-theme 'blendoit-light)
1
Added:
(deftheme blendoit-light
2
Added:
"Created 2020-08-14.")
3
Added:
4
Added:
(custom-theme-set-faces
5
Added:
'blendoit-light
6
Added:
'(variable-pitch ((t (:family "Liberation Sans"))))
7
Added:
'(escape-glyph ((((background dark)) (:foreground "cyan")) (((type pc)) (:foreground "magenta")) (t (:foreground "brown"))))
8
Added:
'(homoglyph ((((background dark)) (:foreground "cyan")) (((type pc)) (:foreground "magenta")) (t (:foreground "brown"))))
9
Added:
'(minibuffer-prompt ((t (:foreground "purple" :family "Hermit"))))
10
Added:
'(highlight ((t (:background "light sky blue" :foreground "white"))))
11
Added:
'(region ((t (:background "light gray"))))
12
Added:
'(shadow ((t (:foreground "dark slate gray"))))
13
Added:
'(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
Added:
'(trailing-whitespace ((((class color) (background light)) (:background "red1")) (((class color) (background dark)) (:background "red1")) (t (:inverse-video t))))
15
Added:
'(font-lock-builtin-face ((t (:foreground "dark slate blue"))))
16
Added:
'(font-lock-comment-delimiter-face ((t (:foreground "dim gray" :inherit font-lock-comment-face))))
17
Added:
'(font-lock-comment-face ((t (:slant italic :foreground "slate gray" :inherit variable-pitch))))
18
Added:
'(font-lock-constant-face ((t (:foreground "dark cyan"))))
19
Added:
'(font-lock-function-name-face ((((class color) (min-colors 88) (background light)) (:foreground "Blue1")) (((class color) (min-colors 88) (background dark)) (:foreground "LightSkyBlue")) (((class color) (min-colors 16) (background light)) (:foreground "Blue")) (((class color) (min-colors 16) (background dark)) (:foreground "LightSkyBlue")) (((class color) (min-colors 8)) (:weight bold :foreground "blue")) (t (:weight bold :inverse-video t))))
20
Added:
'(font-lock-keyword-face ((t (:foreground "DodgerBlue4"))))
21
Added:
'(font-lock-negation-char-face ((t nil)))
22
Added:
'(font-lock-preprocessor-face ((t (:inherit (font-lock-builtin-face)))))
23
Added:
'(font-lock-regexp-grouping-backslash ((t (:inherit (bold)))))
24
Added:
'(font-lock-regexp-grouping-construct ((t (:inherit (bold)))))
25
Added:
'(font-lock-string-face ((t (:foreground "DodgerBlue1"))))
26
Added:
'(font-lock-type-face ((t (:foreground "ForestGreen"))))
27
Added:
'(font-lock-variable-name-face ((t (:foreground "sienna"))))
28
Added:
'(font-lock-warning-face ((t (:inherit (error)))))
29
Added:
'(fringe ((t (:background "grey95"))))
30
Added:
'(header-line ((t (:box nil :foreground "grey20" :background "grey90" :inherit (mode-line)))))
31
Added:
'(tooltip ((t (:foreground "black" :background "lightyellow" :inherit (variable-pitch)))))
32
Added:
'(mode-line ((t (:box (:line-width -1 :color nil :style released-button) :foreground "black" :background "grey75"))))
33
Added:
'(mode-line-buffer-id ((t (:weight bold))))
34
Added:
'(mode-line-emphasis ((t (:weight bold))))
35
Added:
'(mode-line-highlight ((t (:box (:line-width 2 :color "grey40" :style released-button)))))
36
Added:
'(mode-line-inactive ((t (:weight light :box (:line-width -1 :color "grey75" :style nil) :foreground "grey20" :background "grey90" :inherit (mode-line)))))
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"))))
41
Added:
'(next-error ((t (:inherit region))))
42
Added:
'(query-replace ((t (:inherit (isearch)))))
43
Added:
'(org-formula ((t (:inherit org-table))))
44
Added:
'(org-meta-line ((t (:foreground "blue violet" :family "Hermit"))))
45
Added:
'(org-document-title ((t (:width normal :height 2.0 :weight bold :slant normal :underline nil :inherit default))))
46
Added:
'(org-footnote ((t (:foreground "DodgerBlue3" :inherit link))))
47
Added:
'(org-tag ((t (:foreground "Purple" :weight bold :family "Hermit"))))
48
Added:
'(org-document-info-keyword ((t (:inherit org-meta-line))))
49
Added:
'(org-code ((t (:background "light grey" :foreground "black"))))
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"))))
52
Added:
'(org-verbatim ((t (:inherit shadow))))
53
Added:
'(font-lock-doc-face ((t (:Family "Liberation Sans" :inherit font-lock-string-face))))
54
Added:
'(cursor ((t (:background "red"))))
55
Added:
'(org-document-info ((t (:inherit variable-pitch))))
56
Added:
'(fixed-pitch ((t (:family "Hack"))))
57
Added:
'(org-table ((t (:inherit fixed-pitch :foreground "dark slate gray" :box (:line-width 1 :color "light slate gray")))))
58
Added:
'(org-block ((t (: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")))))
82
Added:
83
Added:
(provide-theme 'blendoit-light)