diff options
author | fpi | 2020-01-16 11:10:48 +0100 |
---|---|---|
committer | fpi | 2020-01-29 17:58:06 +0100 |
commit | b0f42879a3761e7cfc57aba055f523c524080d3b (patch) | |
tree | 6355fe28e0e21d9ba8cfafd84f6e6b8fb1191522 | |
parent | Reduce size of archived headlines (diff) |
Fix background of dired subtrees
-rw-r--r-- | emacs-init.org | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/emacs-init.org b/emacs-init.org index 652c07f..7803b64 100644 --- a/emacs-init.org +++ b/emacs-init.org @@ -733,22 +733,22 @@ The above macro can be used like this. nil) (dired-subtree-depth-1-face (:background nil) - nil) + (:background nil)) (dired-subtree-depth-2-face (:background nil) - nil) + (:background nil)) (dired-subtree-depth-3-face (:background nil) - nil) + (:background nil)) (dired-subtree-depth-4-face (:background nil) - nil) + (:background nil)) (dired-subtree-depth-5-face (:background nil) - nil) + (:background nil)) (dired-subtree-depth-6-face (:background nil) - nil) + (:background nil)) (nlinum-current-line (:foreground ,builtin) (:foreground ,bg-dark)) |