;;; init-writing.el --- Configure things related to writing -*- lexical-binding: t -*- ;; Author: Franck Cuny ;;; Commentary: ;; Configure things related to writing ;;; Code: (require 'init-markdown) (require 'ispell) (setq ispell-program-name (executable-find "aspell")) (setq ispell-dictionary "en_US") (setq ispell-extra-args '("--camel-case")) (provide 'init-writing) ;;; init-writing.el ends here