[Emacs Lisp] Personal ~/.emacs.d/ configuration folder.
blendoit-ucla theme
Changed files
.gitignore
@@ -0,0 +1,2 @@
1
Added:
# .gitignore
2
Added:
./elpa/*
README.org
@@ -3,7 +3,7 @@
3
3
4
4
* Installation
5
5
6
Removed:
** DONE Linux
6
Added:
** Linux
7
7
1. Backup your current =~/.emacs.d=:
8
8
#+BEGIN_SRC bash
9
9
mv ~/.emacs.d ~/.emacs.d.bkp
@@ -13,8 +13,6 @@
13
13
cd ~
14
14
git clone https://github.com/Blendoit/.emacs.d.git
15
15
#+END_SRC
16
Removed:
17
Removed:
** TODO Windows
18
16
19
17
* Main Files
20
18
auto-save-list/.saves-32379-blendux~
@@ -0,0 +1,2 @@
1
Added:
/home/blendux/.emacs.d/README.org
2
Added:
/tmp/#!home!blendux!.emacs.d!README.org#
blendoit-ucla-theme.el
@@ -0,0 +1,51 @@
1
Added:
(deftheme blendoit-ucla
2
Added:
"Created 2019-09-03.")
3
Added:
4
Added:
(custom-theme-set-faces
5
Added:
'blendoit-ucla
6
Added:
'(cursor ((t (:background "#FFD100"))))
7
Added:
'(fixed-pitch ((t (:family "Hack"))))
8
Added:
'(variable-pitch ((((type w32)) (:foundry "outline" :family "Arial")) (t (:family "Sans Serif"))))
9
Added:
'(escape-glyph ((((background dark)) (:foreground "cyan")) (((type pc)) (:foreground "magenta")) (t (:foreground "brown"))))
10
Added:
'(homoglyph ((((background dark)) (:foreground "cyan")) (((type pc)) (:foreground "magenta")) (t (:foreground "brown"))))
11
Added:
'(minibuffer-prompt ((t (:foreground "#FFD100"))))
12
Added:
'(highlight ((((class color) (min-colors 88) (background light)) (:background "darkseagreen2")) (((class color) (min-colors 88) (background dark)) (:background "darkolivegreen")) (((class color) (min-colors 16) (background light)) (:background "darkseagreen2")) (((class color) (min-colors 16) (background dark)) (:background "darkolivegreen")) (((class color) (min-colors 8)) (:foreground "black" :background "green")) (t (:inverse-video t))))
13
Added:
'(region ((t (:background "#C3D7EE" :distant-foreground "#003B5C"))))
14
Added:
'(shadow ((((class color grayscale) (min-colors 88) (background light)) (:foreground "grey50")) (((class color grayscale) (min-colors 88) (background dark)) (:foreground "grey70")) (((class color) (min-colors 8) (background light)) (:foreground "green")) (((class color) (min-colors 8) (background dark)) (:foreground "yellow"))))
15
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))))
16
Added:
'(trailing-whitespace ((((class color) (background light)) (:background "red1")) (((class color) (background dark)) (:background "red1")) (t (:inverse-video t))))
17
Added:
'(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))))
18
Added:
'(font-lock-comment-delimiter-face ((default (:inherit (font-lock-comment-face)))))
19
Added:
'(font-lock-comment-face ((t (:foreground "#FF4F00"))))
20
Added:
'(font-lock-constant-face ((((class grayscale) (background light)) (:underline (:color foreground-color :style line) :weight bold :foreground "LightGray")) (((class grayscale) (background dark)) (:underline (:color foreground-color :style line) :weight bold :foreground "Gray50")) (((class color) (min-colors 88) (background light)) (:foreground "dark cyan")) (((class color) (min-colors 88) (background dark)) (:foreground "Aquamarine")) (((class color) (min-colors 16) (background light)) (:foreground "CadetBlue")) (((class color) (min-colors 16) (background dark)) (:foreground "Aquamarine")) (((class color) (min-colors 8)) (:foreground "magenta")) (t (:underline (:color foreground-color :style line) :weight bold))))
21
Added:
'(font-lock-doc-face ((t (:inherit (font-lock-string-face)))))
22
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))))
23
Added:
'(font-lock-keyword-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 "Purple")) (((class color) (min-colors 88) (background dark)) (:foreground "Cyan1")) (((class color) (min-colors 16) (background light)) (:foreground "Purple")) (((class color) (min-colors 16) (background dark)) (:foreground "Cyan")) (((class color) (min-colors 8)) (:weight bold :foreground "cyan")) (t (:weight bold))))
24
Added:
'(font-lock-negation-char-face ((t nil)))
25
Added:
'(font-lock-preprocessor-face ((t (:inherit (font-lock-builtin-face)))))
26
Added:
'(font-lock-regexp-grouping-backslash ((t (:inherit (bold)))))
27
Added:
'(font-lock-regexp-grouping-construct ((t (:inherit (bold)))))
28
Added:
'(font-lock-string-face ((((class grayscale) (background light)) (:slant italic :foreground "DimGray")) (((class grayscale) (background dark)) (:slant italic :foreground "LightGray")) (((class color) (min-colors 88) (background light)) (:foreground "VioletRed4")) (((class color) (min-colors 88) (background dark)) (:foreground "LightSalmon")) (((class color) (min-colors 16) (background light)) (:foreground "RosyBrown")) (((class color) (min-colors 16) (background dark)) (:foreground "LightSalmon")) (((class color) (min-colors 8)) (:foreground "green")) (t (:slant italic))))
29
Added:
'(font-lock-type-face ((((class grayscale) (background light)) (:weight bold :foreground "Gray90")) (((class grayscale) (background dark)) (:weight bold :foreground "DimGray")) (((class color) (min-colors 88) (background light)) (:foreground "ForestGreen")) (((class color) (min-colors 88) (background dark)) (:foreground "PaleGreen")) (((class color) (min-colors 16) (background light)) (:foreground "ForestGreen")) (((class color) (min-colors 16) (background dark)) (:foreground "PaleGreen")) (((class color) (min-colors 8)) (:foreground "green")) (t (:underline (:color foreground-color :style line) :weight bold))))
30
Added:
'(font-lock-variable-name-face ((((class grayscale) (background light)) (:slant italic :weight bold :foreground "Gray90")) (((class grayscale) (background dark)) (:slant italic :weight bold :foreground "DimGray")) (((class color) (min-colors 88) (background light)) (:foreground "sienna")) (((class color) (min-colors 88) (background dark)) (:foreground "LightGoldenrod")) (((class color) (min-colors 16) (background light)) (:foreground "DarkGoldenrod")) (((class color) (min-colors 16) (background dark)) (:foreground "LightGoldenrod")) (((class color) (min-colors 8)) (:weight light :foreground "yellow")) (t (:slant italic :weight bold))))
31
Added:
'(font-lock-warning-face ((t (:inherit (error)))))
32
Added:
'(button ((t (:inherit (link)))))
33
Added:
'(link ((((class color) (min-colors 88) (background light)) (:underline (:color foreground-color :style line) :foreground "RoyalBlue3")) (((class color) (background light)) (:underline (:color foreground-color :style line) :foreground "blue")) (((class color) (min-colors 88) (background dark)) (:underline (:color foreground-color :style line) :foreground "cyan1")) (((class color) (background dark)) (:underline (:color foreground-color :style line) :foreground "cyan")) (t (:inherit (underline)))))
34
Added:
'(link-visited ((default (:inherit (link))) (((class color) (background light)) (:foreground "magenta4")) (((class color) (background dark)) (:foreground "violet"))))
35
Added:
'(fringe ((t (:background "#8BB8E8"))))
36
Added:
'(header-line ((default (:inherit (mode-line))) (((type tty)) (:underline (:color foreground-color :style line) :inverse-video nil)) (((class color grayscale) (background light)) (:box nil :foreground "grey20" :background "grey90")) (((class color grayscale) (background dark)) (:box nil :foreground "grey90" :background "grey20")) (((class mono) (background light)) (:underline (:color foreground-color :style line) :box nil :inverse-video nil :foreground "black" :background "white")) (((class mono) (background dark)) (:underline (:color foreground-color :style line) :box nil :inverse-video nil :foreground "white" :background "black"))))
37
Added:
'(tooltip ((((class color)) (:inherit (variable-pitch) :foreground "black" :background "lightyellow")) (t (:inherit (variable-pitch)))))
38
Added:
'(mode-line ((t (:box (:line-width -1 :style released-button) :foreground "#000000" :background "#FFB81C"))))
39
Added:
'(mode-line-buffer-id ((t (:weight bold))))
40
Added:
'(mode-line-emphasis ((t (:weight bold))))
41
Added:
'(mode-line-highlight ((((class color) (min-colors 88)) (:box (:line-width 2 :color "grey40" :style released-button))) (t (:inherit (highlight)))))
42
Added:
'(mode-line-inactive ((default (:inherit (mode-line))) (((class color) (min-colors 88) (background light)) (:background "grey90" :foreground "grey20" :box (:line-width -1 :color "grey75" :style nil) :weight light)) (((class color) (min-colors 88) (background dark)) (:background "grey30" :foreground "grey80" :box (:line-width -1 :color "grey40" :style nil) :weight light))))
43
Added:
'(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))))
44
Added:
'(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))))
45
Added:
'(lazy-highlight ((((class color) (min-colors 88) (background light)) (:background "paleturquoise")) (((class color) (min-colors 88) (background dark)) (:background "paleturquoise4")) (((class color) (min-colors 16)) (:background "turquoise3")) (((class color) (min-colors 8)) (:background "turquoise3")) (t (:underline (:color foreground-color :style line)))))
46
Added:
'(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"))))
47
Added:
'(next-error ((t (:inherit (region)))))
48
Added:
'(query-replace ((t (:inherit (isearch)))))
49
Added:
'(default ((t (:inherit nil :stipple nil :background "#003B5C" :foreground "white" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 154 :width normal :foundry "SRC" :family "Hack")))))
50
Added:
51
Added:
(provide-theme 'blendoit-ucla)
init_blendoit.el
@@ -25,8 +25,8 @@
25
25
;; GNU Emacs GUI transparency
26
26
;;(set-frame-parameter (selected-frame) 'alpha '(<active> . <inactive>))
27
27
;;(set-frame-parameter (selected-frame) 'alpha <both>)
28
Removed:
(set-frame-parameter (selected-frame) 'alpha '(90 . 50))
29
Removed:
(add-to-list 'default-frame-alist '(alpha . (85 . 50)))
28
Added:
(set-frame-parameter (selected-frame) 'alpha '(85 . 50))
29
Added:
;; (add-to-list 'default-frame-alist '(alpha . (85 . 50)))
30
30
31
31
(load "~/.emacs.d/init_org-mode.el")
32
32
(load "~/.emacs.d/init_latex.el")
init_emacs.el
@@ -4,15 +4,12 @@
4
4
;; Your init file should contain only one such instance.
5
5
;; If there is more than one, they won't work right.
6
6
'(blink-cursor-mode t)
7
Removed:
'(custom-enabled-themes (quote (blendoit)))
7
Added:
'(custom-enabled-themes (quote (blendoit-ucla)))
8
8
'(custom-safe-themes
9
9
(quote
10
Removed:
("4d3f9059ce9e8594351e7c99bb53bd4f618f4434bab04b185d480d7b28251936" "dd46180484782ce5001f05854af9860d0613e10c50be3922b4134d97d68b5aca" "132c52df20cd5dcee93e1ace30be8cacca8f4610138de4e61965cfc52d5e7d55" "57d746f8f0b6ca0b0be3c6cf273e73213d4eb773c6a0756fc984a3f010dee0b8" "e70654ab1649ac36ddcd7333e3a4525f706f37d608db17c3d9a89deae4dbc2da" default)))
10
Added:
("6c3e0ab8b2a65dc980913556ffd19cd0838fdf6dd60509b7ec6964ab1bdc9a02" "22615d6e3875a2bdbcb1880352915c3420747227cc4d6189901da246f372109e" "5eeb46715f0f75190b99a17eee27e4481b34ef12d56e6eb359e69bf88b968055" "b1a9f91180ae9011bf6a8929d24e3e3aaedb44518a97eb9b6cdb3c35fdaeaf63" default)))
11
11
'(display-line-numbers-type (quote visual))
12
12
'(global-display-line-numbers-mode t)
13
Removed:
'(package-selected-packages
14
Removed:
(quote
15
Removed:
(magit evil-leader latex-preview-pane org-bullets evil)))
16
13
'(scroll-bar-mode nil)
17
14
'(tool-bar-mode nil))
18
15
(custom-set-faces