spacemacs/layers/+lang/restructuredtext/packages.el

62 lines
1.8 KiB
EmacsLisp

;;; packages.el --- rest layer packages file for Spacemacs.
;;
;; Copyright (c) 2012-2017 Sylvain Benner & Contributors
;;
;; Author: <wwguo@hiGDP>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(defconst restructuredtext-packages
'(
auto-complete
(auto-complete-rst :toggle (configuration-layer/package-usedp 'auto-complete))
(rst :location built-in)
(rst-directives :location local)
(rst-lists :location local)
flyspell
smartparens
yasnippet
))
(defun restructuredtext/post-init-auto-complete ()
(add-hook 'rst-mode-hook 'auto-complete-mode))
(defun restructuredtext/init-auto-complete-rst ()
(use-package auto-complete-rst
:commands (auto-complete-rst-add-sources
auto-complete-rst-init)
:init (spacemacs/add-to-hook 'rst-mode-hook '(auto-complete-rst-init
auto-complete-rst-add-sources))))
(defun restructuredtext/init-rst-directives ()
(use-package rst-directives))
(defun restructuredtext/init-rst-lists ()
(use-package rst-lists))
(defun restructuredtext/init-rst-sphinx ()
(use-package rst-sphinx))
(defun restructuredtext/init-rst ()
(use-package rst
:defer t
:config (add-hook 'rst-adjust-hook 'rst-toc-update)))
(defun restructuredtext/post-init-flyspell ()
(spell-checking/add-flyspell-hook 'rst-mode-hook))
(when (configuration-layer/layer-usedp 'auto-completion)
(defun restructuredtext/post-init-yasnippet ()
(add-hook 'rst-mode-hook 'spacemacs/load-yasnippet)))
(defun restructuredtext/post-init-yasnippet ()
(add-hook 'rst-mode-hook 'spacemacs/load-yasnippet))
(defun restructuredtext/post-init-smartparens ()
(add-hook 'rst-mode-hook 'smartparens-mode))