From e18e870865892d6b3c556bdde69a68b7c190941a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 18 Oct 2015 16:12:07 -0400 Subject: Even fancier dired --- emacs.d/init.el | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/emacs.d/init.el b/emacs.d/init.el index 56f5363..38d1dfd 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -18,6 +18,7 @@ ("melpa" . "http://melpa.org/packages/"))) (package-initialize) +(require 'dired+) (require 'psvn) (require 'spaceline-config) (require 'tramp) @@ -54,7 +55,9 @@ '(cursor-in-non-selected-windows box) '(delete-old-versions t) '(dired-listing-switches "-al --time-style=long-iso") + '(dired-omit-files "^\\.?#\\|^\\.$\\|^\\.\\.\\|^\\..*$") '(diredp-hide-details-initially-flag t) + '(diredp-wrap-around-flag nil) '(erc-mode-line-format "%t") '(fill-column 79) '(font-lock-maximum-decoration t) @@ -97,10 +100,19 @@ '(diff-refine-removed ((t (:inherit diff-refine-change :foreground "red")))) '(diff-removed ((t (:foreground "#D30102")))) '(dired-directory ((t (:foreground "#268BD2")))) + '(diredp-date-time ((t (:foreground "#6c71c4")))) '(diredp-dir-heading ((t (:foreground "#4E9A06")))) '(diredp-dir-name ((t (:foreground "#3465A4")))) + '(diredp-dir-priv ((t (:foreground "#3465A4")))) + '(diredp-exec-priv ((t (:foreground "#859900")))) '(diredp-file-name ((t (:foreground "gray90")))) '(diredp-file-suffix ((t (:foreground "gray70")))) + '(diredp-no-priv ((t nil))) + '(diredp-number ((t (:foreground "gray50")))) + '(diredp-rare-priv ((t (:foreground "#32E2E2")))) + '(diredp-read-priv ((t (:foreground "gray70")))) + '(diredp-symlink ((t (:foreground "#32E2E2")))) + '(diredp-write-priv ((t (:foreground "gray90")))) '(escape-glyph ((((background dark)) (:foreground "cyan")))) '(font-lock-comment-face ((((class color) (min-colors 88) (background dark)) (:foreground "#268BD2")))) '(font-lock-constant-face ((((class color) (min-colors 88) (background dark)) (:weight bold)))) -- cgit v1.2.1