summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config/init-osx.el4
-rw-r--r--config/init-writing.el1
2 files changed, 4 insertions, 1 deletions
diff --git a/config/init-osx.el b/config/init-osx.el
index a9fe148..175ffbd 100644
--- a/config/init-osx.el
+++ b/config/init-osx.el
@@ -21,7 +21,9 @@
:demand t
:if (memq window-system '(mac ns))
:config
- (exec-path-from-shell-initialize))
+ (exec-path-from-shell-initialize)
+ :custom
+ (exec-path-from-shell-variables '("ASPELL_CONF")))
(provide 'init-osx)
diff --git a/config/init-writing.el b/config/init-writing.el
index 578ad86..9cd3370 100644
--- a/config/init-writing.el
+++ b/config/init-writing.el
@@ -17,6 +17,7 @@
(prog-mode . flyspell-prog-mode))
:diminish flyspell-mode
:custom
+ (ispell-program-name "aspell")
(ispell-silently-savep t)
(ispell-local-dictionary "en_US")
(ispell-extra-args '("--camel-case")))