blob: df9989ffc830bfea0318b8b1319b9021c3b440c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
;;; -*- lexical-binding: t; -*-
(use-package jinx
:ensure t
:hook ((org-mode . jinx-mode)
(text-mode . jinx-mode))
:bind (("M-$" . jinx-correct)
("C-M-$" . jinx-languages)))
(use-package olivetti
:ensure t
:defer t
:hook ((markdown-mode . olivetti-mode)
(org-mode . olivetti-mode))
:init
(setq olivetti-body-width 80))
(use-package writegood-mode
:ensure t
:hook (jinx-mode . writegood-mode))
(provide 'td-writing)
|