-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.init.custom.el
41 lines (41 loc) · 2.23 KB
/
.init.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
(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.
'(backup-directory-alist '(("." . "~/.emacs.d/backup/")))
'(compilation-disable-input t)
'(custom-safe-themes
'("5267955ef9a9e8bc64cadd113c1b15166c352ceb1798d18bab97e7892db5866f" "d46cb99f59fb858b11cac130f3a53688cc4323f3ec4aae80688bdd5d00312b91" default))
'(package-selected-packages
'(elgrep eglot markdown-mode tree-sitter-langs tree-sitter mince-theme smex rust-mode naysayer-theme ido-completing-read+ company))
'(rust-always-locate-project-on-open t)
'(warning-suppress-log-types '((jsonrpc))))
(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.
'(default ((t (:foreground "#aea294" :background "#191b1b"))))
'(cursor ((t (:background "#998d7e"))))
'(eglot-highlight-symbol-face ((t (:bold nil))))
'(font-lock-builtin-face ((t (:foreground "#aea294"))))
'(font-lock-comment-face ((t (:foreground "#84a9b4"))))
'(font-lock-constant-face ((t (:foreground "#aea294"))))
'(font-lock-doc-face ((t (:foreground "#84a9b4"))))
'(font-lock-function-name-face ((t (:foreground "#dae9ea"))))
'(font-lock-keyword-face ((t (:foreground "#d0dddd"))))
'(font-lock-preprocessor-face ((t (:foreground "#be786f"))))
'(font-lock-string-face ((t (:foreground "#d9e5e5"))))
'(font-lock-type-face ((t (:foreground "#69bac9"))))
'(font-lock-variable-name-face ((t (:foreground "#dacebd"))))
'(font-lock-warning-face ((t (:foreground "red" :bold t))))
'(fringe ((t (:background "#3d3f3f"))))
'(minibuffer-prompt ((t (:foreground "#1ea3df" :bold t))))
'(mode-line ((t (:foreground "#b8b8b8" :background "#515151"))))
'(region ((t (:background "#6c6b68" :foreground "black"))))
'(rust-ampersand-face ((t (:foreground "#b8c6c6"))))
'(rust-builtin-formatting-macro ((t (:foreground "#be786f"))))
'(secondary-selection ((t (:background "#111111"))))
'(shadow ((t (:foreground "#4e5a63"))))
'(show-paren-match ((t (:background "#695f52")))))