-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.el
82 lines (82 loc) · 2.87 KB
/
custom.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(ansi-color-faces-vector
[default bold shadow italic underline bold bold-italic bold])
'(ansi-color-names-vector
["#3C3836" "#FB4934" "#B8BB26" "#FABD2F" "#83A598" "#D3869B" "#8EC07C" "#EBDBB2"])
'(compilation-message-face (quote default))
'(cua-global-mark-cursor-color "#2aa198")
'(cua-normal-cursor-color "#657b83")
'(cua-overwrite-cursor-color "#b58900")
'(cua-read-only-cursor-color "#859900")
'(fci-rule-color "#515151")
'(highlight-changes-colors (quote ("#d33682" "#6c71c4")))
'(highlight-symbol-colors
(--map
(solarized-color-blend it "#fdf6e3" 0.25)
(quote
("#b58900" "#2aa198" "#dc322f" "#6c71c4" "#859900" "#cb4b16" "#268bd2"))))
'(highlight-symbol-foreground-color "#586e75")
'(highlight-tail-colors
(quote
(("#eee8d5" . 0)
("#B4C342" . 20)
("#69CABF" . 30)
("#69B7F0" . 50)
("#DEB542" . 60)
("#F2804F" . 70)
("#F771AC" . 85)
("#eee8d5" . 100))))
'(hl-bg-colors
(quote
("#DEB542" "#F2804F" "#FF6E64" "#F771AC" "#9EA0E5" "#69B7F0" "#69CABF" "#B4C342")))
'(hl-fg-colors
(quote
("#fdf6e3" "#fdf6e3" "#fdf6e3" "#fdf6e3" "#fdf6e3" "#fdf6e3" "#fdf6e3" "#fdf6e3")))
'(magit-diff-use-overlays nil)
'(paradox-github-token t)
'(pos-tip-background-color "#36473A")
'(pos-tip-foreground-color "#FFFFC8")
'(powerline-default-separator nil)
'(powerline-display-hud nil)
'(powerline-height 16)
'(powerline-text-scale-factor 1.4)
'(smartrep-mode-line-active-bg (solarized-color-blend "#859900" "#eee8d5" 0.2))
'(term-default-bg-color "#fdf6e3")
'(term-default-fg-color "#657b83")
'(vc-annotate-background nil)
'(vc-annotate-color-map
(quote
((20 . "#f2777a")
(40 . "#f99157")
(60 . "#ffcc66")
(80 . "#99cc99")
(100 . "#66cccc")
(120 . "#6699cc")
(140 . "#cc99cc")
(160 . "#f2777a")
(180 . "#f99157")
(200 . "#ffcc66")
(220 . "#99cc99")
(240 . "#66cccc")
(260 . "#6699cc")
(280 . "#cc99cc")
(300 . "#f2777a")
(320 . "#f99157")
(340 . "#ffcc66")
(360 . "#99cc99"))))
'(vc-annotate-very-old-color nil)
'(weechat-color-list
(quote
(unspecified "#fdf6e3" "#eee8d5" "#990A1B" "#dc322f" "#546E00" "#859900" "#7B6000" "#b58900" "#00629D" "#268bd2" "#93115C" "#d33682" "#00736F" "#2aa198" "#657b83" "#839496"))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(flycheck-error ((t (:underline "#dc322f"))))
'(flycheck-info ((t (:underline "#fdf6e3"))))
'(flycheck-warning ((t (:underline "#b58900")))))