From 54057e2086a7d7686ebb1343c11f7ee0e7436a15 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sun, 6 Mar 2016 18:23:03 +0100 Subject: Emacs: Load dired-narrow after dired --- tag-emacs/emacs.d/init.org | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'tag-emacs/emacs.d') diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index 280dfa3..50d35ba 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -1087,9 +1087,10 @@ to start filtering, =RET= to complete the filter and =g= to refresh the buffer, removing the filter. #+BEGIN_SRC emacs-lisp - (use-package dired-narrow - :bind (:map dired-mode-map - ("/" . dired-narrow))) + (with-eval-after-load 'dired + (use-package dired-narrow + :bind (:map dired-mode-map + ("/" . dired-narrow)))) #+END_SRC * Documentation -- cgit 1.4.1 From d8a2cd6ba309aaeae238b36c59b61f8968c70333 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sun, 6 Mar 2016 18:23:16 +0100 Subject: Emacs: Ignore .stversions folders in projectile --- tag-emacs/emacs.d/init.org | 1 + 1 file changed, 1 insertion(+) (limited to 'tag-emacs/emacs.d') diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index 50d35ba..bf1edaf 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -361,6 +361,7 @@ based upon some folder conventions I use. :init (projectile-global-mode) :diminish projectile-mode :config (progn + (add-to-list 'projectile-globally-ignored-directories ".stversions") (defun ap/subfolder-projects (dir) (--map (file-relative-name it dir) (-filter (lambda (subdir) -- cgit 1.4.1