|
@@ -144,6 +144,14 @@
|
|
|
(use-package writegood-mode ; for M-x writegood-mode to avoid passive tense etc
|
|
|
:ensure t
|
|
|
:defer t)
|
|
|
+(use-package jinx ; for spellchecking, requires the enchant-2 library (+voikko for Finnish)
|
|
|
+ ;; install in Windows using: https://github.com/minad/jinx/issues/10
|
|
|
+ :ensure t
|
|
|
+ :hook (emacs-startup . global-jinx-mode)
|
|
|
+ :bind (("M-$" . jinx-correct)
|
|
|
+ ("C-M-$" . jinx-languages))
|
|
|
+ :config
|
|
|
+ (setq jinx-languages "en_GB"))
|
|
|
(use-package adaptive-wrap
|
|
|
:ensure t
|
|
|
:hook
|
|
@@ -625,6 +633,10 @@ Group number 1 should be the prefix itself."
|
|
|
(setq org-hide-emphasis-markers t) ; Must be activated for org-appear to work
|
|
|
(setq org-appear-autoemphasis t ; Show bold, italics, verbatim, etc.
|
|
|
org-appear-autosubmarkers t)) ; Show sub- and superscripts
|
|
|
+(use-package org-fragtog ; toggle LaTeX previews automatically, like org-appear
|
|
|
+ :ensure t
|
|
|
+ :after org
|
|
|
+ :hook (org-mode . org-fragtog-mode))
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|