spacemacs/layers/+vim/evil-commentary/packages.el

24 lines
627 B
EmacsLisp
Raw Normal View History

2015-03-16 07:27:43 +00:00
;;; packages.el --- evil-commentary Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2016 Sylvain Benner & Contributors
2015-03-16 07:27:43 +00:00
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq evil-commentary-packages
'(evil-commentary
(evil-nerd-commenter :excluded t)
))
2015-09-07 04:25:30 +00:00
2015-03-16 07:27:43 +00:00
(defun evil-commentary/init-evil-commentary ()
(use-package evil-commentary
:diminish evil-commentary-mode
2015-09-07 04:25:30 +00:00
:init
2015-03-16 07:27:43 +00:00
(progn
2015-09-07 04:25:30 +00:00
(evil-commentary-mode)
(spacemacs/set-leader-keys ";" 'evil-commentary))))