summary refs log tree commit diff
path: root/config/init-writing.el
blob: e60f03050ea62c004905ffa65e9600bd7b3e5d0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
;;; 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