summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-10-18 16:12:07 -0400
committerDavid Robillard <d@drobilla.net>2015-10-18 16:12:07 -0400
commite18e870865892d6b3c556bdde69a68b7c190941a (patch)
treece080d7791215151020be77f9747d13227fa6c0d
parent35b3fa0c15f78d5b8de55f58e32591eb05b721cd (diff)
downloaddotfiles-e18e870865892d6b3c556bdde69a68b7c190941a.tar.gz
dotfiles-e18e870865892d6b3c556bdde69a68b7c190941a.tar.bz2
dotfiles-e18e870865892d6b3c556bdde69a68b7c190941a.zip
Even fancier dired
-rw-r--r--emacs.d/init.el12
1 files changed, 12 insertions, 0 deletions
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))))