-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomization.el
24 lines (24 loc) · 1.45 KB
/
customization.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
(message "Loading customization file")
(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.
'(c-noise-macro-names '("constexpr"))
'(ivy-count-format "(%d/%d) ")
'(ivy-mode t)
'(ivy-use-virtual-buffers t)
'(package-selected-packages nil)
'(warning-suppress-log-types '((comp)))
'(warning-suppress-types '((comp))))
(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 (:inherit nil :extend nil :stipple nil :background "gray12" :foreground "#dfdfdf" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight regular :height 100 :width normal))))
'(custom-state ((t (:background "#b6e63e" :foreground "color-16"))))
'(ivy-current-match ((((class color) (background light)) :background "blue" :foreground "white") (((class color) (background dark)) :background "blue" :foreground "black")))
'(magit-diff-added ((t (:extend t :background "color-22"))))
'(magit-diff-added-highlight ((t (:extend t :background "color-22" :foreground "#9ac334" :weight bold))))
'(smerge-lower ((t (:extend t :background "color-28")))))