app/write: refactor

Removed autoloads that are already defined by packages.
This commit is contained in:
Henrik Lissner 2018-07-31 18:41:34 +02:00
parent fb3d385211
commit a7bef8ec88
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 6 additions and 21 deletions

View file

@ -19,6 +19,6 @@
(defun +write|init-org-mode ()
"Initializes `org-mode' specific settings for `+write-mode'."
(when (eq major-mode 'org-mode)
(let ((arg (if +write-mode +1 -1)))
(let ((arg (if +write-mode +1 -1)))
(+org-pretty-mode arg)
(org-indent-mode (if +write-mode -1 +1)))))