[emacs] Add polymode ReStructuredText support

This commit is contained in:
Correl Roush 2021-03-20 00:24:17 -04:00
parent 867b237d6c
commit 4c392d1acd
2 changed files with 10 additions and 0 deletions

View file

@ -1071,6 +1071,14 @@ Show linked org document sections inline.
("C-c l v t" . org-transclusion-mode))
:commands (org-transclusion-mode))
#+end_src
** ReStructuredText
#+begin_src emacs-lisp
(use-package! polymode
:defer t)
(use-package! poly-rst
:mode ("\\.rst\\'" . poly-rst-mode))
#+end_src
** Unfill
Does the opposite of =fill (M-q)=, removing line breaks from a paragraph or
region.

View file

@ -40,6 +40,8 @@
(package! weechat)
(package! weechat-alert)
(package! yapfify)
(package! polymode)
(package! poly-rst)
;; When using org-roam via the `+roam` flag
(unpin! org-roam company-org-roam)