6b33031dc5
- Rename contrib directory to layers - Add new variable dotspacemacs-distribution - Move spacemacs layer to layers/!distribution - New layer spacemacs-core in layers/!distribution - User can now set dotspacemacs-distribution to spacemacs or spacemacs-core (default spacemacs) spacemacs-core is very lightweight layer sufficient to build upon spacemacs.
40 lines
1,001 B
EmacsLisp
40 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)
|
|
)))
|