diff options
Diffstat (limited to '.emacs.d')
| -rw-r--r-- | .emacs.d/eighters-theme.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.emacs.d/eighters-theme.el b/.emacs.d/eighters-theme.el index 8f070ae..6692c1e 100644 --- a/.emacs.d/eighters-theme.el +++ b/.emacs.d/eighters-theme.el @@ -1,6 +1,7 @@ ;; -*- lexical-binding: t -*- (require 'color) +(require 'compile) ; compilation-*-directory-face (require-theme 'modus-themes) (deftheme eighters @@ -212,6 +213,7 @@ `(custom-variable-tag ((t (:inherit eighters-title-3)))) `(default ((t (:background ,bg :foreground ,fg)))) `(dired-broken-symlink ((t (:background ,bg-red :foreground ,fg-yellow :weight bold)))) + `(dired-directory ((t (:weight bold :foreground ,fg-blue)))) `(dired-header ((t (:inherit eighters-title-1)))) `(dired-special ((t (:foreground ,fg-yellow-dim)))) `(eldoc-highlight-function-argument ((t (:background ,bg-yellow :foreground ,fg-yellow :weight bold)))) @@ -462,6 +464,10 @@ `(git-commit-keyword ((t (:inherit font-lock-constant-face)))) `(git-commit-known-pseudo-header ((t (:inherit message-header-name)))) `(git-commit-summary ((t (:inherit eighters-title-1)))) - `(git-commit-pseudo-header ((t (:inherit eighters-identity)))))) + `(git-commit-pseudo-header ((t (:inherit eighters-identity))))) + (custom-theme-set-variables + 'eighters + '(compilation-enter-directory-face 'dired-directory) + `(compilation-leave-directory-face '(:foreground ,fg-blue-dim)))) (provide-theme 'eighters) |
