diff options
author | Amin Bandali <bandali@gnu.org> | 2019-11-11 13:47:46 -0500 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-11-11 13:47:46 -0500 |
commit | 27113bb88645bad3c0eb744f56e87b36922ff119 (patch) | |
tree | a3523795b8240739444574e335e900b425bda93a | |
parent | 6ca3a7b10aa6f8130c5b079578bb0cc19d2b0b3d (diff) | |
download | configs-27113bb88645bad3c0eb744f56e87b36922ff119.tar.gz configs-27113bb88645bad3c0eb744f56e87b36922ff119.tar.xz configs-27113bb88645bad3c0eb744f56e87b36922ff119.zip |
emacs: ivy: customize match faces a bit to make them more subtle
-rw-r--r-- | .emacs.d/init.el | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 3ce4a3d..9fda569 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -1018,11 +1018,14 @@ This function is intended for use with `ivy-ignore-buffers'." (add-to-list 'ivy-ignore-buffers 'b/ivy-ignore-buffer-p) (ivy-mode 1) - ;; :custom-face - ;; (ivy-minibuffer-match-face-2 ((t (:background "#e99ce8" :weight semi-bold)))) - ;; (ivy-minibuffer-match-face-3 ((t (:background "#bbbbff" :weight semi-bold)))) - ;; (ivy-minibuffer-match-face-4 ((t (:background "#ffbbff" :weight semi-bold)))) -) + :custom-face + (ivy-minibuffer-match-face-2 ((t (:background "#e7e7e7" :weight bold)))) + (ivy-minibuffer-match-face-3 ((t (:background "#bbbbff" :weight semi-bold)))) + (ivy-minibuffer-match-face-4 ((t (:background "#ffbbff" :weight semi-bold)))) + (ivy-current-match ((((class color) (background light)) + :background "#d7d7d7" :foreground "black") + (((class color) (background dark)) + :background "#65a7e2" :foreground "black")))) (use-package swiper :demand |