Add support for DISK-USAGE

This commit is contained in:
Protesilaos Stavrou 2019-12-24 11:38:01 +02:00
parent cc3905f584
commit 4ce43d4a9f
No known key found for this signature in database
GPG Key ID: 99BD6459CD5CA3EA
3 changed files with 15 additions and 0 deletions

View File

@ -184,6 +184,7 @@ the "full support" may not be 100% true…
+ dashboard (emacs-dashboard)
+ deadgrep
+ define-word
+ disk-usage
+ diff-hl
+ diff-mode
+ dired

View File

@ -475,6 +475,13 @@ between foreground and background is >= 7:1)."
;;;; define-word
`(define-word-face-1 ((,class (:foreground ,yellow))))
`(define-word-face-2 ((,class (:foreground ,fg-main))))
;;;; disk-usage
`(disk-usage-children ((,class (:foreground ,yellow))))
`(disk-usage-inaccessible ((,class (:foreground ,red :weight bold))))
`(disk-usage-percent ((,class (:foreground ,green))))
`(disk-usage-size ((,class (:foreground ,cyan))))
`(disk-usage-symlink ((,class (:foreground ,blue :underline t))))
`(disk-usage-symlink-directory ((,class (:foreground ,blue-alt :weight bold))))
;;;; diff-hl
`(diff-hl-change ((,class (:inherit modus-theme-intense-yellow))))
`(diff-hl-delete ((,class (:inherit modus-theme-intense-red))))

View File

@ -475,6 +475,13 @@ between foreground and background is >= 7:1)."
;;;; define-word
`(define-word-face-1 ((,class (:foreground ,yellow))))
`(define-word-face-2 ((,class (:foreground ,fg-main))))
;;;; disk-usage
`(disk-usage-children ((,class (:foreground ,yellow))))
`(disk-usage-inaccessible ((,class (:foreground ,red :weight bold))))
`(disk-usage-percent ((,class (:foreground ,green))))
`(disk-usage-size ((,class (:foreground ,cyan))))
`(disk-usage-symlink ((,class (:foreground ,blue :underline t))))
`(disk-usage-symlink-directory ((,class (:foreground ,blue-alt :weight bold))))
;;;; diff-hl
`(diff-hl-change ((,class (:inherit modus-theme-intense-yellow))))
`(diff-hl-delete ((,class (:inherit modus-theme-intense-red))))