Skip to content

Commit

Permalink
Add ivy-mode support (#87)
Browse files Browse the repository at this point in the history
Added support for the "ivy-mode" of the "ivy" package [1,2].
It makes use of background to foreground color shading as main accent
to highlight matches.

[1]: https://github.com/abo-abo/swiper
[2]: https://melpa.org/#/ivy 

Co-Authored-By: Arctic Ice Studio <[email protected]>
Closes GH-85
  • Loading branch information
jdek authored and arcticicestudio committed Jan 7, 2020
1 parent 995d842 commit d59f37c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion nord-theme.el
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,15 @@
`(org-agenda-date-weekend ((,class (:foreground ,nord9))))
`(org-agenda-date-today ((,class (:foreground ,nord8 :weight bold))))
`(org-agenda-done ((,class (:foreground ,nord14))))
`(org-verbatim ((,class (:foreground ,nord7))))))
`(org-verbatim ((,class (:foreground ,nord7))))

;; > ivy-mode
`(ivy-current-match ((,class (:inherit region))))
`(ivy-minibuffer-match-face-1 ((,class (:inherit default))))
`(ivy-minibuffer-match-face-2 ((,class (:background ,nord7 :foreground ,nord0))))
`(ivy-minibuffer-match-face-3 ((,class (:background ,nord8 :foreground ,nord0))))
`(ivy-minibuffer-match-face-4 ((,class (:background ,nord9 :foreground ,nord0))))
`(ivy-remote ((,class (:foreground ,nord14))))))

;;;###autoload
(when (and (boundp 'custom-theme-load-path) load-file-name)
Expand Down

0 comments on commit d59f37c

Please sign in to comment.