diff options
author | Franck Cuny <franck@fcuny.net> | 2021-11-29 11:16:30 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-11-29 11:16:30 -0800 |
commit | 9876d8adc82949d71e3dca18d06b091c2d3a9c93 (patch) | |
tree | 47c9f7e50484d2a001d68980a355054093df7817 /emacs | |
parent | emacs: font settings (diff) | |
download | emacs.d-9876d8adc82949d71e3dca18d06b091c2d3a9c93.tar.gz |
emacs: enable camel case option for spell check
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/fcuny-text.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emacs/custom/fcuny-text.el b/emacs/custom/fcuny-text.el index 45198a1..72e0d7e 100644 --- a/emacs/custom/fcuny-text.el +++ b/emacs/custom/fcuny-text.el @@ -6,6 +6,7 @@ :custom (ispell-dictionary "en_US") (ispell-program-name "aspell") + (ispell-extra-args '("--camel-case")) :config (use-package flyspell-correct-ivy :after flyspell |