;;; init-writing.el --- Configure things related to writing -*- lexical-binding: t -*- ;; Author: Franck Cuny ;;; Commentary: ;; Configure things related to writing ;;; Code: (require 'init-markdown) (use-package flyspell :defer :hook ((text-mode . flyspell-mode) (org-mode . flyspell-mode) (git-commit-mode . flyspell-mode) (prog-mode . flyspell-prog-mode)) :diminish flyspell-mode :custom (ispell-program-name "aspell") (ispell-silently-savep t) (ispell-local-dictionary "en_US") (ispell-extra-args '("--camel-case"))) (provide 'init-writing) ;;; init-writing.el ends here