From 104189d34877cd8922cf4218bbf9f366381d8530 Mon Sep 17 00:00:00 2001 From: Tu Do Date: Thu, 19 Mar 2015 22:00:15 +0700 Subject: [PATCH] [Fix #693] Make helm-ff-doted-directory consistent --- spacemacs/packages.el | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/spacemacs/packages.el b/spacemacs/packages.el index fa749a281..aacc26a1b 100644 --- a/spacemacs/packages.el +++ b/spacemacs/packages.el @@ -1352,6 +1352,13 @@ which require an initialization must be listed explicitly in the list.") :config (progn (helm-mode +1) + (defun spacemacs/set-dotted-directory () + (set-face-attribute 'helm-ff-dotted-directory + nil + :foreground nil + :background nil + :inherit 'helm-ff-directory)) + (add-hook 'helm-find-files-before-init-hook 'spacemacs/set-dotted-directory) ;; alter helm-bookmark key bindings to be simpler (defun simpler-helm-bookmark-keybindings () (define-key helm-bookmark-map (kbd "C-d") 'helm-bookmark-run-delete)