summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--custom.el4
-rw-r--r--lisp/init-appearance.el5
2 files changed, 6 insertions, 3 deletions
diff --git a/custom.el b/custom.el
index c7e4da0..44457d5 100644
--- a/custom.el
+++ b/custom.el
@@ -9,6 +9,4 @@
;; 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.
- '(dired-subtree-depth-1-face ((t (:background "gray80"))))
- '(dired-subtree-depth-2-face ((t (:background "gray90"))))
- '(dired-subtree-depth-3-face ((t (:background "gray95")))))
+)
diff --git a/lisp/init-appearance.el b/lisp/init-appearance.el
index 9f2553a..f4b3ed0 100644
--- a/lisp/init-appearance.el
+++ b/lisp/init-appearance.el
@@ -12,4 +12,9 @@
(size-indication-mode t)
+(custom-set-faces
+ '(dired-subtree-depth-1-face ((t (:background "gray80"))))
+ '(dired-subtree-depth-2-face ((t (:background "gray90"))))
+ '(dired-subtree-depth-3-face ((t (:background "gray95")))))
+
(provide 'init-appearance)