From 7c5780a719565630f58e7751afa8c7e458c49871 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 6 Apr 2024 11:22:57 -0700 Subject: a org file is definitely not the way for me --- config/init-writing.el | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 config/init-writing.el (limited to 'config/init-writing.el') diff --git a/config/init-writing.el b/config/init-writing.el new file mode 100644 index 0000000..e60f030 --- /dev/null +++ b/config/init-writing.el @@ -0,0 +1,19 @@ +;;; 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 -- cgit 1.4.1