summaryrefslogblamecommitdiff
path: root/config/init-writing.el
blob: e60f03050ea62c004905ffa65e9600bd7b3e5d0c (plain) (tree)


















                                                                                      
;;; init-writing.el --- Configure things related to writing -*- lexical-binding: t -*-
;; Author: Franck Cuny <franck@fcuny.net>

;;; 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