From: Mark Wooding Date: Thu, 3 Jun 2010 15:56:10 +0000 (+0100) Subject: el/dot-emacs.el: Configure dired faces. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/profile/commitdiff_plain/e0e2aca3a66ce69153d52e2c0625dd5be58bcbd0?ds=sidebyside el/dot-emacs.el: Configure dired faces. Colour directories and symlinks to match usual `ls' preferences. Don't highlight group-writable permissions. It's a shame that we can't highlight other things like executable files. Oh, well. --- diff --git a/el/dot-emacs.el b/el/dot-emacs.el index c218411..3372556 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -866,6 +866,13 @@ (mdw-define-face comint-highlight-prompt (mdw-define-face comint-highlight-input (t nil)) +(mdw-define-face dired-directory + (t :foreground "cyan" :weight bold)) +(mdw-define-face dired-symlink + (t :foreground "cyan")) +(mdw-define-face dired-perm-write + (t nil)) + (mdw-define-face trailing-whitespace (((class color)) :background "red") (t :inverse-video t))