spacemacs/layers/+vim/vinegar/packages.el
justbur 6eab954afe Use + instead of ! for layer categories
Helm seems to treat "!" specially in pattern matching, so having a ! in
the pattern string when traversing directories is problematic. This
change fixes #2737, because as far as I can tell "+" has no special
meaning in a helm pattern.

Of course, we can choose a different character, but I'm fond of "+" as
representing "more layers here".
2015-09-11 00:13:51 -04:00

41 lines
1,001 B
EmacsLisp

;;; packages.el --- vinegar Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2014 Sylvain Benner
;; Copyright (c) 2014-2015 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq vinegar-packages
'(
diff-hl
;; dired+
))
(setq vinegar-excluded-packages '())
(defun vinegar/init-dired+ ()
(use-package dired+
:defer t
:init
(progn
(setq diredp-hide-details-initially-flag t)
(setq diredp-hide-details-propagate-flag t)
;; use single buffer for all dired navigation
;; disable font themeing from dired+
(setq font-lock-maximum-decoration (quote ((dired-mode . 1) (t . t))))
(toggle-diredp-find-file-reuse-dir 1)
)))
(defun vinegar/post-init-diff-hl ()
(use-package diff-hl
:defer t
:init
(progn
(add-hook 'dired-mode-hook 'diff-hl-dired-mode)
)))