2017-02-02 14:29:45 +00:00
|
|
|
;;; packages.el --- rest layer packages file for Spacemacs.
|
|
|
|
;;
|
2020-09-16 21:34:40 +00:00
|
|
|
;; Copyright (c) 2012-2020 Sylvain Benner & Contributors
|
2017-02-02 14:29:45 +00:00
|
|
|
;;
|
|
|
|
;; Author: <wwguo@hiGDP>
|
|
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
|
|
;;
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
;;
|
|
|
|
;;; License: GPLv3
|
|
|
|
|
2017-02-02 19:55:18 +00:00
|
|
|
(defconst restructuredtext-packages
|
|
|
|
'(
|
|
|
|
auto-complete
|
2020-02-20 22:30:59 +00:00
|
|
|
;; Disabled due to package is not longer maintained
|
|
|
|
;; (auto-complete-rst :requires auto-complete)
|
|
|
|
|
|
|
|
;; Linum is deprecated, use nlinum layer or native line numbers
|
|
|
|
;; linum
|
2017-02-02 19:55:18 +00:00
|
|
|
(rst :location built-in)
|
|
|
|
(rst-directives :location local)
|
|
|
|
(rst-lists :location local)
|
|
|
|
flyspell
|
|
|
|
smartparens
|
2020-02-20 22:30:59 +00:00
|
|
|
yasnippet))
|
2017-02-02 19:55:18 +00:00
|
|
|
|
|
|
|
(defun restructuredtext/post-init-auto-complete ()
|
|
|
|
(add-hook 'rst-mode-hook 'auto-complete-mode))
|
|
|
|
|
2020-02-20 22:30:59 +00:00
|
|
|
;; (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))))
|
2017-02-02 19:55:18 +00:00
|
|
|
|
2020-02-20 22:30:59 +00:00
|
|
|
;; (defun restructuredtext/post-init-linum ()
|
|
|
|
;; ;; important auto-complete work-around to be applied to make both linum
|
|
|
|
;; ;; and auto-complete to work together
|
|
|
|
;; (when (configuration-layer/package-used-p 'auto-complete)
|
|
|
|
;; (add-hook 'rst-mode-hook 'ac-linum-workaround t)))
|
2017-02-02 14:29:45 +00:00
|
|
|
|
|
|
|
(defun restructuredtext/init-rst-directives ()
|
|
|
|
(use-package rst-directives))
|
|
|
|
|
|
|
|
(defun restructuredtext/init-rst-lists ()
|
|
|
|
(use-package rst-lists))
|
|
|
|
|
|
|
|
(defun restructuredtext/init-rst ()
|
|
|
|
(use-package rst
|
2018-03-04 04:37:53 +00:00
|
|
|
:defer t
|
2017-02-02 19:55:18 +00:00
|
|
|
:config (add-hook 'rst-adjust-hook 'rst-toc-update)))
|
2017-02-02 14:29:45 +00:00
|
|
|
|
|
|
|
(defun restructuredtext/post-init-flyspell ()
|
2017-02-02 19:56:13 +00:00
|
|
|
(spell-checking/add-flyspell-hook 'rst-mode-hook)
|
|
|
|
;; important auto-complete work-around to be applied to make both flyspell
|
|
|
|
;; and auto-complete to work together
|
2017-07-02 13:48:06 +00:00
|
|
|
(when (configuration-layer/package-used-p 'auto-complete)
|
2017-02-02 19:56:13 +00:00
|
|
|
(add-hook 'rst-mode-hook 'ac-flyspell-workaround t)))
|
2017-02-02 14:29:45 +00:00
|
|
|
|
2017-02-02 19:55:18 +00:00
|
|
|
(defun restructuredtext/post-init-yasnippet ()
|
|
|
|
(add-hook 'rst-mode-hook 'spacemacs/load-yasnippet))
|
|
|
|
|
2017-02-02 14:29:45 +00:00
|
|
|
(defun restructuredtext/post-init-smartparens ()
|
2021-03-16 17:47:15 +00:00
|
|
|
(add-hook 'rst-mode-hook #'spacemacs//activate-smartparens))
|